Plugins to make or improve widescreen resolutions support in PC games, add more features and fix bugs.
Requirements:
- Premake 5 (pre-built executable available in this repository root)
- Visual Studio
Run the following command in the root of this directory to generate the project files (or simply launch premake5.bat):
premake5 vs2022
The usage is as simple as inserting the files into game's root directory. Uninstalling is as easy as that too, delete the files and you are done.
If the game crashes while using the fixes, please send the crash dump (.dmp file).
Plugins usually come with an Ultimate ASI Loader that is capable of generating crash dumps and crash logs.
- Go to your game's main folder (where the game's
.exefile is located). - In the same folder, create a new folder and name it exactly:
CrashDumps
After the game crashes:
- Open the CrashDumps folder you created.
- Look for the newest file with the
.dmpextension (this is the most important file). - You may also include the
.logfile if it exists, but the .dmp file is required.
Please send the .dmp file when reporting the crash.
You can report it here:
Use this method only if the previous method doesn't create a dump.
- Press Windows key + R, type
regedit, and press Enter. - Navigate to this path:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting - Right-click inside the Windows Error Reporting folder → New → Key, and name it exactly:
LocalDumps - Close Registry Editor.
After a crash, the dump file will be saved here:
C:\Users\YOURUSERNAME\AppData\Local\CrashDumps
Find the newest .dmp file related to your game and send it in GitHub Issues.
Warning: This method requires administrator rights and enables crash dumps for all programs on your computer.
- Press Ctrl + Shift + Esc to open Task Manager.
- Find the game process in the list (usually the name of the game's
.exe). - Right-click on it and select Create memory dump file.
Warning: This file will be quite large (hundreds of MB or more).
Upload the .dmp file to Google Drive, OneDrive, Dropbox, or any similar service and make sure the link is set to public access. Then share the link when reporting in GitHub Issues.
- Not compatible with Windows XP (without recompiling with
_xptoolset and/Zc:threadSafeInit-). - For using with WINE, follow this guide.