├── .gitignore ├── GothicStarter ├── GothicGame.g1.de.txt ├── GothicGame.g2.de.txt ├── GothicStarter.bcc ├── GothicStarter.bpr ├── GothicStarter.c ├── GothicStarter.dev ├── GothicStarter.dsp ├── GothicStarter.exe.manifest ├── GothicStarter.h ├── GothicStarter.suo ├── GothicStarter.vcproj ├── GothicStarter.vcproj.DENISPC.Denis.user ├── GothicStarter.vcxproj ├── GothicStarter.vcxproj.filters ├── GothicStarter.vcxproj.user ├── NEWS.txt ├── ReadMe.txt ├── bcc.bat ├── bin.bat ├── clean.bat ├── lib │ ├── c0w32.obj │ ├── cw32.lib │ ├── libc.lib │ └── tinycrt.zip └── res │ ├── g1.ico │ ├── g2.ico │ ├── list.bmp │ ├── main.man │ ├── resource.rc │ └── resource.rh ├── Mssds3d ├── Include │ ├── X3DAudio.h │ ├── XAudio2.h │ ├── XAudio2fx.h │ ├── audiodefs.h │ ├── comdecl.h │ └── xma2defs.h ├── Mss.cpp ├── Mss.h ├── Mssds3d.cpp ├── Mssds3d.h ├── Mssds3d.vcproj ├── Mssds3d.vcproj.denispc.Denis.user ├── Mssds3d.vcxproj ├── Mssds3d.vcxproj.filters ├── Mssds3d.vcxproj.user ├── PreCompiled.cpp ├── PreCompiled.h └── lib │ └── X3DAudio.lib ├── README.md ├── Release ├── pack.bat └── upx.exe ├── Vdfs32g.sln ├── Vdfs32g ├── Components │ ├── Bink │ │ ├── BinkExports.h │ │ ├── DLL.cpp │ │ └── DLL.h │ ├── Common │ │ ├── ComPtr.h │ │ ├── Containers │ │ │ ├── Array.h │ │ │ ├── HashTable.h │ │ │ ├── String.h │ │ │ └── TaggedArray.h │ │ ├── Object.h │ │ ├── TypeDefs.h │ │ ├── Utility.cpp │ │ ├── Utility.h │ │ └── UtilityEx.h │ ├── Fixes.cpp │ ├── Fixes.h │ ├── Fixes │ │ ├── BinkFix.cpp │ │ ├── BinkFix.h │ │ ├── D3DFix.cpp │ │ ├── D3DFix.h │ │ ├── FsHook.cpp │ │ ├── FsHook.h │ │ ├── GUXFix.cpp │ │ ├── GUXFix.h │ │ ├── IniFix.cpp │ │ ├── IniFix.h │ │ ├── KillerFix.cpp │ │ ├── KillerFix.h │ │ ├── MssFix.cpp │ │ ├── MssFix.h │ │ ├── SaveBakFix.cpp │ │ ├── SaveBakFix.h │ │ ├── SendMsgFix.cpp │ │ ├── SendMsgFix.h │ │ ├── SplashFix.cpp │ │ ├── SplashFix.h │ │ ├── SteamOverlayFix.cpp │ │ ├── SteamOverlayFix.h │ │ ├── mssds3d_m3d.h │ │ └── mssds3dh_m3d.h │ ├── IniUtils.cpp │ ├── IniUtils.h │ ├── IniUtilsEx.cpp │ ├── IniUtilsEx.h │ ├── PatchUtils.cpp │ ├── PatchUtils.h │ └── Vdfs │ │ ├── Filters │ │ ├── OggFilter.cpp │ │ └── OggFilter.h │ │ ├── Flows │ │ ├── IFS.h │ │ ├── StdFlow.cpp │ │ ├── StdFlow.h │ │ ├── VdfFlow.cpp │ │ └── VdfFlow.h │ │ ├── Vdfs.cpp │ │ ├── Vdfs.h │ │ └── VdfsIndex.h ├── Exports.def ├── PreCompiled.cpp ├── PreCompiled.h ├── Vdfs32.cpp ├── Vdfs32.h ├── Vdfs32g.aps ├── Vdfs32g.rc ├── Vdfs32g.vcproj ├── Vdfs32g.vcxproj ├── Vdfs32g.vcxproj.filters ├── Vdfs32g.vcxproj.user ├── include │ ├── VersionHelpers.h │ ├── ogg │ │ ├── Makefile.am │ │ ├── config_types.h.in │ │ ├── ogg.h │ │ └── os_types.h │ └── vorbis │ │ ├── Makefile.am │ │ ├── codec.h │ │ ├── vorbisenc.h │ │ └── vorbisfile.h ├── lib │ ├── libogg.lib │ ├── libvorbis_static.lib │ └── libvorbisfile_static.lib └── resource.h ├── Vdfs32log ├── Exports.def ├── Vdfs32.cpp ├── Vdfs32.h ├── Vdfs32log.vcproj ├── Vdfs32log.vcxproj └── Vdfs32log.vcxproj.user └── VdfsTool ├── AssemblyInfo.cpp ├── Form1.h ├── Form1.resX ├── VdfStruct.h ├── VdfsTool.cpp ├── VdfsTool.vcproj ├── VdfsTool.vcxproj ├── VdfsTool.vcxproj.filters ├── VdfsTool.vcxproj.user ├── app.aps ├── app.ico ├── app.rc ├── resource.h ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- 1 | /Output 2 | /Work 3 | /.vs -------------------------------------------------------------------------------- /GothicStarter/GothicGame.g1.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicGame.g1.de.txt -------------------------------------------------------------------------------- /GothicStarter/GothicGame.g2.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicGame.g2.de.txt -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.bcc -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.bpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.bpr -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.c -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.dev -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.dsp -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.exe.manifest -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.h -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.suo -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.vcproj -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.vcproj.DENISPC.Denis.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.vcproj.DENISPC.Denis.user -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.vcxproj -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.vcxproj.filters -------------------------------------------------------------------------------- /GothicStarter/GothicStarter.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/GothicStarter.vcxproj.user -------------------------------------------------------------------------------- /GothicStarter/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/NEWS.txt -------------------------------------------------------------------------------- /GothicStarter/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/ReadMe.txt -------------------------------------------------------------------------------- /GothicStarter/bcc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/bcc.bat -------------------------------------------------------------------------------- /GothicStarter/bin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/bin.bat -------------------------------------------------------------------------------- /GothicStarter/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/clean.bat -------------------------------------------------------------------------------- /GothicStarter/lib/c0w32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/lib/c0w32.obj -------------------------------------------------------------------------------- /GothicStarter/lib/cw32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/lib/cw32.lib -------------------------------------------------------------------------------- /GothicStarter/lib/libc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/lib/libc.lib -------------------------------------------------------------------------------- /GothicStarter/lib/tinycrt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/lib/tinycrt.zip -------------------------------------------------------------------------------- /GothicStarter/res/g1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/res/g1.ico -------------------------------------------------------------------------------- /GothicStarter/res/g2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/res/g2.ico -------------------------------------------------------------------------------- /GothicStarter/res/list.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/res/list.bmp -------------------------------------------------------------------------------- /GothicStarter/res/main.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/res/main.man -------------------------------------------------------------------------------- /GothicStarter/res/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/res/resource.rc -------------------------------------------------------------------------------- /GothicStarter/res/resource.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/GothicStarter/res/resource.rh -------------------------------------------------------------------------------- /Mssds3d/Include/X3DAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Include/X3DAudio.h -------------------------------------------------------------------------------- /Mssds3d/Include/XAudio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Include/XAudio2.h -------------------------------------------------------------------------------- /Mssds3d/Include/XAudio2fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Include/XAudio2fx.h -------------------------------------------------------------------------------- /Mssds3d/Include/audiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Include/audiodefs.h -------------------------------------------------------------------------------- /Mssds3d/Include/comdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Include/comdecl.h -------------------------------------------------------------------------------- /Mssds3d/Include/xma2defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Include/xma2defs.h -------------------------------------------------------------------------------- /Mssds3d/Mss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mss.cpp -------------------------------------------------------------------------------- /Mssds3d/Mss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mss.h -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.cpp -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.h -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.vcproj -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.vcproj.denispc.Denis.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.vcproj.denispc.Denis.user -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.vcxproj -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.vcxproj.filters -------------------------------------------------------------------------------- /Mssds3d/Mssds3d.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/Mssds3d.vcxproj.user -------------------------------------------------------------------------------- /Mssds3d/PreCompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/PreCompiled.cpp -------------------------------------------------------------------------------- /Mssds3d/PreCompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/PreCompiled.h -------------------------------------------------------------------------------- /Mssds3d/lib/X3DAudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Mssds3d/lib/X3DAudio.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/README.md -------------------------------------------------------------------------------- /Release/pack.bat: -------------------------------------------------------------------------------- 1 | upx.exe -9 vdfs32g.dll -------------------------------------------------------------------------------- /Release/upx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Release/upx.exe -------------------------------------------------------------------------------- /Vdfs32g.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g.sln -------------------------------------------------------------------------------- /Vdfs32g/Components/Bink/BinkExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Bink/BinkExports.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Bink/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Bink/DLL.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Bink/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Bink/DLL.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/ComPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/ComPtr.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Containers/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Containers/Array.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Containers/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Containers/HashTable.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Containers/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Containers/String.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Containers/TaggedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Containers/TaggedArray.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Object.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/TypeDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/TypeDefs.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Utility.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/Utility.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Common/UtilityEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Common/UtilityEx.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/BinkFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/BinkFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/BinkFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/BinkFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/D3DFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/D3DFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/D3DFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/D3DFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/FsHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/FsHook.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/FsHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/FsHook.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/GUXFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/GUXFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/GUXFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/GUXFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/IniFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/IniFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/IniFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/IniFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/KillerFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/KillerFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/KillerFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/KillerFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/MssFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/MssFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/MssFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/MssFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SaveBakFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SaveBakFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SaveBakFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SaveBakFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SendMsgFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SendMsgFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SendMsgFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SendMsgFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SplashFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SplashFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SplashFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SplashFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SteamOverlayFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SteamOverlayFix.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/SteamOverlayFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/SteamOverlayFix.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/mssds3d_m3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/mssds3d_m3d.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Fixes/mssds3dh_m3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Fixes/mssds3dh_m3d.h -------------------------------------------------------------------------------- /Vdfs32g/Components/IniUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/IniUtils.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/IniUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/IniUtils.h -------------------------------------------------------------------------------- /Vdfs32g/Components/IniUtilsEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/IniUtilsEx.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/IniUtilsEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/IniUtilsEx.h -------------------------------------------------------------------------------- /Vdfs32g/Components/PatchUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/PatchUtils.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/PatchUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/PatchUtils.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Filters/OggFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Filters/OggFilter.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Filters/OggFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Filters/OggFilter.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Flows/IFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Flows/IFS.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Flows/StdFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Flows/StdFlow.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Flows/StdFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Flows/StdFlow.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Flows/VdfFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Flows/VdfFlow.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Flows/VdfFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Flows/VdfFlow.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Vdfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Vdfs.cpp -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/Vdfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/Vdfs.h -------------------------------------------------------------------------------- /Vdfs32g/Components/Vdfs/VdfsIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Components/Vdfs/VdfsIndex.h -------------------------------------------------------------------------------- /Vdfs32g/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Exports.def -------------------------------------------------------------------------------- /Vdfs32g/PreCompiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/PreCompiled.cpp -------------------------------------------------------------------------------- /Vdfs32g/PreCompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/PreCompiled.h -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32.cpp -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32.h -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32g.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32g.aps -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32g.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32g.rc -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32g.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32g.vcproj -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32g.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32g.vcxproj -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32g.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32g.vcxproj.filters -------------------------------------------------------------------------------- /Vdfs32g/Vdfs32g.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/Vdfs32g.vcxproj.user -------------------------------------------------------------------------------- /Vdfs32g/include/VersionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/VersionHelpers.h -------------------------------------------------------------------------------- /Vdfs32g/include/ogg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/ogg/Makefile.am -------------------------------------------------------------------------------- /Vdfs32g/include/ogg/config_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/ogg/config_types.h.in -------------------------------------------------------------------------------- /Vdfs32g/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/ogg/ogg.h -------------------------------------------------------------------------------- /Vdfs32g/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/ogg/os_types.h -------------------------------------------------------------------------------- /Vdfs32g/include/vorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/vorbis/Makefile.am -------------------------------------------------------------------------------- /Vdfs32g/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/vorbis/codec.h -------------------------------------------------------------------------------- /Vdfs32g/include/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /Vdfs32g/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /Vdfs32g/lib/libogg.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/lib/libogg.lib -------------------------------------------------------------------------------- /Vdfs32g/lib/libvorbis_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/lib/libvorbis_static.lib -------------------------------------------------------------------------------- /Vdfs32g/lib/libvorbisfile_static.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/lib/libvorbisfile_static.lib -------------------------------------------------------------------------------- /Vdfs32g/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32g/resource.h -------------------------------------------------------------------------------- /Vdfs32log/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32log/Exports.def -------------------------------------------------------------------------------- /Vdfs32log/Vdfs32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32log/Vdfs32.cpp -------------------------------------------------------------------------------- /Vdfs32log/Vdfs32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32log/Vdfs32.h -------------------------------------------------------------------------------- /Vdfs32log/Vdfs32log.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32log/Vdfs32log.vcproj -------------------------------------------------------------------------------- /Vdfs32log/Vdfs32log.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32log/Vdfs32log.vcxproj -------------------------------------------------------------------------------- /Vdfs32log/Vdfs32log.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/Vdfs32log/Vdfs32log.vcxproj.user -------------------------------------------------------------------------------- /VdfsTool/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/AssemblyInfo.cpp -------------------------------------------------------------------------------- /VdfsTool/Form1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/Form1.h -------------------------------------------------------------------------------- /VdfsTool/Form1.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/Form1.resX -------------------------------------------------------------------------------- /VdfsTool/VdfStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/VdfStruct.h -------------------------------------------------------------------------------- /VdfsTool/VdfsTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/VdfsTool.cpp -------------------------------------------------------------------------------- /VdfsTool/VdfsTool.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/VdfsTool.vcproj -------------------------------------------------------------------------------- /VdfsTool/VdfsTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/VdfsTool.vcxproj -------------------------------------------------------------------------------- /VdfsTool/VdfsTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/VdfsTool.vcxproj.filters -------------------------------------------------------------------------------- /VdfsTool/VdfsTool.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/VdfsTool.vcxproj.user -------------------------------------------------------------------------------- /VdfsTool/app.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/app.aps -------------------------------------------------------------------------------- /VdfsTool/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/app.ico -------------------------------------------------------------------------------- /VdfsTool/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/app.rc -------------------------------------------------------------------------------- /VdfsTool/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/resource.h -------------------------------------------------------------------------------- /VdfsTool/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/stdafx.cpp -------------------------------------------------------------------------------- /VdfsTool/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GothicFixTeam/GothicFix/HEAD/VdfsTool/stdafx.h --------------------------------------------------------------------------------