├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── README.md └── workflows │ └── msbuild.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── cmake ├── win32.cmake ├── win32_install.cmake └── yaml-cpp.cmake ├── data ├── Win32 │ └── .gitkeep └── x64 │ ├── ACUnity.Patches │ └── version.ini │ ├── DeathStranding.Fix │ └── version.ini │ └── PlanetOfLana.NoTAA │ └── d3d11.ini ├── include ├── ImSubMenu.hpp ├── function_ptr.h ├── helper.hpp ├── memory.hpp └── stdafx.h └── source ├── ACMirage.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── ACUnity.Patches ├── CMakeLists.txt └── dllmain.cpp ├── APT2.Patches ├── CMakeLists.txt └── dllmain.cpp ├── BF3.Patches ├── CMakeLists.txt └── dllmain.cpp ├── BFV.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── BrightMemoryInfinite.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── Control.Patches ├── CMakeLists.txt └── dllmain.cpp ├── CrysisWarhead.Patches ├── CMakeLists.txt └── dllmain.cpp ├── DD2.Sharpness ├── CMakeLists.txt └── dllmain.cpp ├── DeadSpace.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── DeathStranding.Fix ├── CMakeLists.txt └── dllmain.cpp ├── EldenRing.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── GTA5_Enhanced.Patches ├── CMakeLists.txt └── dllmain.cpp ├── GoW.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── GoWR.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── GotG.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── Hitman3.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── LegoHorizonAdventures.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── LiesOfP.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── NierAutomata.DebugFeatures ├── CMakeLists.txt ├── FlagMenu.cpp ├── FlagMenu.hpp ├── Menu.cpp ├── Menu.hpp ├── SDKEnums.hpp ├── d3d11_patch.cpp ├── d3d11_patch.hpp ├── dllmain.cpp └── flags.hpp ├── NierReplicant.Fix ├── CMakeLists.txt └── dllmain.cpp ├── PlanetOfLana.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── QuantumBreak.Patches ├── CMakeLists.txt └── dllmain.cpp ├── RDR3.Patches ├── dllmain.cpp ├── mod_data.h └── scripthook_sdk │ ├── inc │ ├── enums.h │ ├── main.h │ ├── nativeCaller.h │ ├── natives.h │ └── types.h │ └── lib │ └── .gitkeep ├── RE4.Sharpness ├── CMakeLists.txt └── dllmain.cpp ├── RE8.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── Remnant2.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── Shared ├── HDE │ ├── HDE64.c │ ├── HDE64.h │ └── Table64.h ├── ImSubMenu.cpp ├── helper.cpp ├── memory.cpp └── stdafx.cpp ├── SpiderMan.MilesMorales.Patches ├── CMakeLists.txt └── dllmain.cpp ├── T1X.DebugFeatures ├── CMakeLists.txt ├── LookId.hpp ├── code_caves.cpp ├── code_caves.hpp ├── dllmain.cpp ├── dmenu.cpp ├── dmenu.hpp └── patterns.hpp ├── TheGreatCircle.NoTAA ├── CMakeLists.txt └── dllmain.cpp ├── Uncharted4TLL.NoTAA ├── CMakeLists.txt ├── code_caves.cpp ├── code_caves.hpp ├── dllmain.cpp └── patterns.hpp └── WoLong.Fix ├── CMakeLists.txt └── dllmain.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/LICENSE -------------------------------------------------------------------------------- /cmake/win32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/cmake/win32.cmake -------------------------------------------------------------------------------- /cmake/win32_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/cmake/win32_install.cmake -------------------------------------------------------------------------------- /cmake/yaml-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/cmake/yaml-cpp.cmake -------------------------------------------------------------------------------- /data/Win32/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/x64/ACUnity.Patches/version.ini: -------------------------------------------------------------------------------- 1 | [GlobalSets] 2 | LoadPlugins=1 3 | -------------------------------------------------------------------------------- /data/x64/DeathStranding.Fix/version.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/data/x64/DeathStranding.Fix/version.ini -------------------------------------------------------------------------------- /data/x64/PlanetOfLana.NoTAA/d3d11.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/data/x64/PlanetOfLana.NoTAA/d3d11.ini -------------------------------------------------------------------------------- /include/ImSubMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/include/ImSubMenu.hpp -------------------------------------------------------------------------------- /include/function_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/include/function_ptr.h -------------------------------------------------------------------------------- /include/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/include/helper.hpp -------------------------------------------------------------------------------- /include/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/include/memory.hpp -------------------------------------------------------------------------------- /include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/include/stdafx.h -------------------------------------------------------------------------------- /source/ACMirage.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/ACMirage.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/ACMirage.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/ACMirage.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/ACUnity.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/ACUnity.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/ACUnity.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/ACUnity.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/APT2.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/APT2.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/APT2.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/APT2.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/BF3.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/BF3.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/BF3.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/BF3.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/BFV.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/BFV.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/BFV.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/BFV.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/BrightMemoryInfinite.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/BrightMemoryInfinite.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/BrightMemoryInfinite.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/BrightMemoryInfinite.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/Control.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Control.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/Control.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Control.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/CrysisWarhead.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/CrysisWarhead.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/CrysisWarhead.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/CrysisWarhead.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/DD2.Sharpness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/DD2.Sharpness/CMakeLists.txt -------------------------------------------------------------------------------- /source/DD2.Sharpness/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/DD2.Sharpness/dllmain.cpp -------------------------------------------------------------------------------- /source/DeadSpace.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/DeadSpace.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/DeadSpace.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/DeadSpace.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/DeathStranding.Fix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/DeathStranding.Fix/CMakeLists.txt -------------------------------------------------------------------------------- /source/DeathStranding.Fix/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/DeathStranding.Fix/dllmain.cpp -------------------------------------------------------------------------------- /source/EldenRing.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/EldenRing.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/EldenRing.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/EldenRing.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/GTA5_Enhanced.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GTA5_Enhanced.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/GTA5_Enhanced.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GTA5_Enhanced.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/GoW.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GoW.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/GoW.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GoW.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/GoWR.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GoWR.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/GoWR.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GoWR.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/GotG.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GotG.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/GotG.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/GotG.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/Hitman3.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Hitman3.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/Hitman3.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Hitman3.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/LegoHorizonAdventures.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/LegoHorizonAdventures.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/LegoHorizonAdventures.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/LegoHorizonAdventures.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/LiesOfP.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/LiesOfP.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/LiesOfP.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/LiesOfP.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/CMakeLists.txt -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/FlagMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/FlagMenu.cpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/FlagMenu.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void FlagMenu(); 4 | -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/Menu.cpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/Menu.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | void set_paused_flag(BOOL v); 6 | -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/SDKEnums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/SDKEnums.hpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/d3d11_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/d3d11_patch.cpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/d3d11_patch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/d3d11_patch.hpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/dllmain.cpp -------------------------------------------------------------------------------- /source/NierAutomata.DebugFeatures/flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierAutomata.DebugFeatures/flags.hpp -------------------------------------------------------------------------------- /source/NierReplicant.Fix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierReplicant.Fix/CMakeLists.txt -------------------------------------------------------------------------------- /source/NierReplicant.Fix/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/NierReplicant.Fix/dllmain.cpp -------------------------------------------------------------------------------- /source/PlanetOfLana.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/PlanetOfLana.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/PlanetOfLana.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/PlanetOfLana.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/QuantumBreak.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/QuantumBreak.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/QuantumBreak.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/QuantumBreak.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/RDR3.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/RDR3.Patches/mod_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/mod_data.h -------------------------------------------------------------------------------- /source/RDR3.Patches/scripthook_sdk/inc/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/scripthook_sdk/inc/enums.h -------------------------------------------------------------------------------- /source/RDR3.Patches/scripthook_sdk/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/scripthook_sdk/inc/main.h -------------------------------------------------------------------------------- /source/RDR3.Patches/scripthook_sdk/inc/nativeCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/scripthook_sdk/inc/nativeCaller.h -------------------------------------------------------------------------------- /source/RDR3.Patches/scripthook_sdk/inc/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/scripthook_sdk/inc/natives.h -------------------------------------------------------------------------------- /source/RDR3.Patches/scripthook_sdk/inc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RDR3.Patches/scripthook_sdk/inc/types.h -------------------------------------------------------------------------------- /source/RDR3.Patches/scripthook_sdk/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/RE4.Sharpness/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RE4.Sharpness/CMakeLists.txt -------------------------------------------------------------------------------- /source/RE4.Sharpness/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RE4.Sharpness/dllmain.cpp -------------------------------------------------------------------------------- /source/RE8.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RE8.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/RE8.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/RE8.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/Remnant2.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Remnant2.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/Remnant2.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Remnant2.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/Shared/HDE/HDE64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Shared/HDE/HDE64.c -------------------------------------------------------------------------------- /source/Shared/HDE/HDE64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Shared/HDE/HDE64.h -------------------------------------------------------------------------------- /source/Shared/HDE/Table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Shared/HDE/Table64.h -------------------------------------------------------------------------------- /source/Shared/ImSubMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Shared/ImSubMenu.cpp -------------------------------------------------------------------------------- /source/Shared/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Shared/helper.cpp -------------------------------------------------------------------------------- /source/Shared/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Shared/memory.cpp -------------------------------------------------------------------------------- /source/Shared/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /source/SpiderMan.MilesMorales.Patches/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/SpiderMan.MilesMorales.Patches/CMakeLists.txt -------------------------------------------------------------------------------- /source/SpiderMan.MilesMorales.Patches/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/SpiderMan.MilesMorales.Patches/dllmain.cpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/CMakeLists.txt -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/LookId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/LookId.hpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/code_caves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/code_caves.cpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/code_caves.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/code_caves.hpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/dllmain.cpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/dmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/dmenu.cpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/dmenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/dmenu.hpp -------------------------------------------------------------------------------- /source/T1X.DebugFeatures/patterns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/T1X.DebugFeatures/patterns.hpp -------------------------------------------------------------------------------- /source/TheGreatCircle.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/TheGreatCircle.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/TheGreatCircle.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/TheGreatCircle.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/Uncharted4TLL.NoTAA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Uncharted4TLL.NoTAA/CMakeLists.txt -------------------------------------------------------------------------------- /source/Uncharted4TLL.NoTAA/code_caves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Uncharted4TLL.NoTAA/code_caves.cpp -------------------------------------------------------------------------------- /source/Uncharted4TLL.NoTAA/code_caves.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Uncharted4TLL.NoTAA/code_caves.hpp -------------------------------------------------------------------------------- /source/Uncharted4TLL.NoTAA/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Uncharted4TLL.NoTAA/dllmain.cpp -------------------------------------------------------------------------------- /source/Uncharted4TLL.NoTAA/patterns.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/Uncharted4TLL.NoTAA/patterns.hpp -------------------------------------------------------------------------------- /source/WoLong.Fix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/WoLong.Fix/CMakeLists.txt -------------------------------------------------------------------------------- /source/WoLong.Fix/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TL431/Windows-Game-Patches/HEAD/source/WoLong.Fix/dllmain.cpp --------------------------------------------------------------------------------