Community Tips & Fixes: Difference between revisions

From Dea7hsmiles
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
=== Tip: Auto-switch resolution per game (May 6, 2025) ===
=== Tip: Auto-switch resolution per game (May 6, 2025) ===
{{FixCard
{{FixCard
|type=Tip
  |title=Auto-switch resolution per game (Luigi’s Mansion example)
  |title=Auto-switch resolution per game in TeknoParrot with QRes (Luigi’s Mansion example)
  |author=DJ_GLiTCH
  |verbatim=
|date=May 6, 2025
|source=https://www.majorgeeks.com/files/details/qres.html
|affected=Windows • TeknoParrot
|summary=
This code will dynamically change your monitor resolution if you have issues with games not being fullscreen or scaling incorrectly.
This code will dynamically change your monitor resolution if you have issues with games not being fullscreen or scaling incorrectly.
 
(…paste full text exactly as posted…)
The code is stored in Launchbox emulator settings, under "Running Script" for Teknoparrot.
|attachments=
 
* QRes.exe download: https://www.majorgeeks.com/files/details/qres.html
You'll need QRes.exe to make this work too (download link below). No install required, just copy QRes.exe into a folder you'd like to save it in.
https://www.majorgeeks.com/files/details/qres.html
 
Change the directory path in the code to suit where you have saved QRes.exe
 
Note: 1: The resolution and refresh rates are tailored to my monitor (4k 240hz). If you have a different refresh rate you want to use across all resolutions, change /r:240 to be what you need (240 = 240hz, 120 = 120hz, 60 = 60hz, etc.). The resolution is self-explanatory, and is in the ChangeResolution(x,y) loop section.
 
Note 2: I've only populated Luigi's Mansion so far but will add more games later, and will try to make the original resolution and hz more smart (currently I hard code 4k 240hz).
 
Note 3: If you have any issues, try setting your display scaling to 100%.
 
#Persistent
 
; Function to change the resolution
ChangeResolution(width, height) {
    RunWait, "C:\xxx\QRes.exe" /x:%width% /y:%height% /c:32 /r:240,,Hide
}
 
; Run when Luigi's Mansion starts
Loop {
    Process, Wait, VACUUM.exe
    ChangeResolution(1920, 1080) ; Change to the desired new resolution for the game
    Process, WaitClose, VACUUM.exe
    ChangeResolution(3840, 2160) ; Restore the original resolution for the monitor
}
}}
 
=== Tip: Stabilize RS3 Reapers config drift (June 15, 2025) ===
{{FixCard
|type=Tip
|title=Stabilize RS3 Reapers when MAMEHooker config drift happens (triggers/recoil crossed)
|verbatim=
PASTE THE EXACT DISCORD TEXT HERE
}}
}}

Revision as of 17:05, 15 August 2025

A curated list of fixes, workarounds, and tips contributed by our Discord community. Have something to add? Post it in Discord and we’ll mirror it here.

Latest submissions

Tip: Auto-switch resolution per game (May 6, 2025)

Auto-switch resolution per game (Luigi’s Mansion example)
By: DJ_GLiTCH
Date: May 6, 2025
Affects: Windows • TeknoParrot
Source: link
This code will dynamically change your monitor resolution if you have issues with games not being fullscreen or scaling incorrectly. (…paste full text exactly as posted…)