├── .gitattributes ├── .gitignore ├── AVP_CustomLauncher.csproj ├── AVP_CustomLauncher.sln ├── AutoRun.ico ├── Config ├── CustomConfig.cs └── LithTechConfig.cs ├── ConfigChoice.Designer.cs ├── ConfigChoice.cs ├── ConfigChoice.resx ├── DLLInjector.cs ├── GameHack.cs ├── LogHandler.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── Release ├── AVP_CustomLauncher.exe ├── Over2048pxFix │ └── D3DIM700.DLL ├── widescreenfix.dll ├── widescreenfix.exp └── widescreenfix.lib ├── Resources └── avp_logo.png ├── Settings.cs ├── SettingsForms ├── GameSettingsForm.Designer.cs ├── GameSettingsForm.cs └── GameSettingsForm.resx ├── Trainer.cs ├── app.manifest └── widescreenfix ├── DebugWithReleaseDll ├── Main.obj ├── vc141.pdb ├── widescreenfix.Build.CppClean.log ├── widescreenfix.log └── widescreenfix.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── widescreenfix.lastbuildstate │ └── widescreenfix.write.1u.tlog ├── Functions.h ├── Hooks.h ├── Main.cpp ├── Main.h ├── widescreenfix.vcxproj └── widescreenfix.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /AVP_CustomLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/AVP_CustomLauncher.csproj -------------------------------------------------------------------------------- /AVP_CustomLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/AVP_CustomLauncher.sln -------------------------------------------------------------------------------- /AutoRun.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/AutoRun.ico -------------------------------------------------------------------------------- /Config/CustomConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Config/CustomConfig.cs -------------------------------------------------------------------------------- /Config/LithTechConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Config/LithTechConfig.cs -------------------------------------------------------------------------------- /ConfigChoice.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/ConfigChoice.Designer.cs -------------------------------------------------------------------------------- /ConfigChoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/ConfigChoice.cs -------------------------------------------------------------------------------- /ConfigChoice.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/ConfigChoice.resx -------------------------------------------------------------------------------- /DLLInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/DLLInjector.cs -------------------------------------------------------------------------------- /GameHack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/GameHack.cs -------------------------------------------------------------------------------- /LogHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/LogHandler.cs -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /Release/AVP_CustomLauncher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Release/AVP_CustomLauncher.exe -------------------------------------------------------------------------------- /Release/Over2048pxFix/D3DIM700.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Release/Over2048pxFix/D3DIM700.DLL -------------------------------------------------------------------------------- /Release/widescreenfix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Release/widescreenfix.dll -------------------------------------------------------------------------------- /Release/widescreenfix.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Release/widescreenfix.exp -------------------------------------------------------------------------------- /Release/widescreenfix.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Release/widescreenfix.lib -------------------------------------------------------------------------------- /Resources/avp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Resources/avp_logo.png -------------------------------------------------------------------------------- /Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Settings.cs -------------------------------------------------------------------------------- /SettingsForms/GameSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/SettingsForms/GameSettingsForm.Designer.cs -------------------------------------------------------------------------------- /SettingsForms/GameSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/SettingsForms/GameSettingsForm.cs -------------------------------------------------------------------------------- /SettingsForms/GameSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/SettingsForms/GameSettingsForm.resx -------------------------------------------------------------------------------- /Trainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/Trainer.cs -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/app.manifest -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/Main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/Main.obj -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/vc141.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/vc141.pdb -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.Build.CppClean.log -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.log -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/widescreenfix.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/widescreenfix.lastbuildstate -------------------------------------------------------------------------------- /widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/widescreenfix.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/DebugWithReleaseDll/widescreenfix.tlog/widescreenfix.write.1u.tlog -------------------------------------------------------------------------------- /widescreenfix/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/Functions.h -------------------------------------------------------------------------------- /widescreenfix/Hooks.h: -------------------------------------------------------------------------------- 1 | pragma once 2 | -------------------------------------------------------------------------------- /widescreenfix/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/Main.cpp -------------------------------------------------------------------------------- /widescreenfix/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/Main.h -------------------------------------------------------------------------------- /widescreenfix/widescreenfix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/widescreenfix.vcxproj -------------------------------------------------------------------------------- /widescreenfix/widescreenfix.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuiMachine/AVP2-Custom-Launcher/HEAD/widescreenfix/widescreenfix.vcxproj.filters --------------------------------------------------------------------------------