├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── GliFixVf ├── GliFixVf.c ├── GliFixVf.h ├── GliFixVf.vcxproj ├── GliFixVf.vcxproj.filters ├── config.c ├── config.h ├── defs.h ├── devinfo.c ├── devinfo.h ├── dllmain.c ├── fix.c ├── fix.h ├── framework.h ├── glide2types.h ├── imports.c ├── imports.h ├── patch.asm ├── r2fn.c └── r2fn.h ├── LICENSE ├── R2FixCfg ├── R2FixCfg.vcxproj ├── R2FixCfg.vcxproj.filters ├── Rayman2D.ico ├── Resource.rc ├── config.c ├── config.h ├── def_analog.h ├── def_button.h ├── def_pad.h ├── dialogs.h ├── display.c ├── display.h ├── framework.h ├── generaldlg.c ├── glidetect.ico ├── main.c ├── main.h ├── pad.c ├── pad.h ├── paddlg.c └── resource.h ├── README.md ├── Ray2Fix.sln ├── generate_gitver.cmd ├── inc ├── detours.h └── detver.h ├── lib └── detours.lib └── third-party-licenses.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/.gitignore -------------------------------------------------------------------------------- /GliFixVf/GliFixVf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/GliFixVf.c -------------------------------------------------------------------------------- /GliFixVf/GliFixVf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/GliFixVf.h -------------------------------------------------------------------------------- /GliFixVf/GliFixVf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/GliFixVf.vcxproj -------------------------------------------------------------------------------- /GliFixVf/GliFixVf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/GliFixVf.vcxproj.filters -------------------------------------------------------------------------------- /GliFixVf/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/config.c -------------------------------------------------------------------------------- /GliFixVf/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/config.h -------------------------------------------------------------------------------- /GliFixVf/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/defs.h -------------------------------------------------------------------------------- /GliFixVf/devinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/devinfo.c -------------------------------------------------------------------------------- /GliFixVf/devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/devinfo.h -------------------------------------------------------------------------------- /GliFixVf/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/dllmain.c -------------------------------------------------------------------------------- /GliFixVf/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/fix.c -------------------------------------------------------------------------------- /GliFixVf/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/fix.h -------------------------------------------------------------------------------- /GliFixVf/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/framework.h -------------------------------------------------------------------------------- /GliFixVf/glide2types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/glide2types.h -------------------------------------------------------------------------------- /GliFixVf/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/imports.c -------------------------------------------------------------------------------- /GliFixVf/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/imports.h -------------------------------------------------------------------------------- /GliFixVf/patch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/patch.asm -------------------------------------------------------------------------------- /GliFixVf/r2fn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/r2fn.c -------------------------------------------------------------------------------- /GliFixVf/r2fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/GliFixVf/r2fn.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/LICENSE -------------------------------------------------------------------------------- /R2FixCfg/R2FixCfg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/R2FixCfg.vcxproj -------------------------------------------------------------------------------- /R2FixCfg/R2FixCfg.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/R2FixCfg.vcxproj.filters -------------------------------------------------------------------------------- /R2FixCfg/Rayman2D.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/Rayman2D.ico -------------------------------------------------------------------------------- /R2FixCfg/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/Resource.rc -------------------------------------------------------------------------------- /R2FixCfg/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/config.c -------------------------------------------------------------------------------- /R2FixCfg/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/config.h -------------------------------------------------------------------------------- /R2FixCfg/def_analog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/def_analog.h -------------------------------------------------------------------------------- /R2FixCfg/def_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/def_button.h -------------------------------------------------------------------------------- /R2FixCfg/def_pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/def_pad.h -------------------------------------------------------------------------------- /R2FixCfg/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/dialogs.h -------------------------------------------------------------------------------- /R2FixCfg/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/display.c -------------------------------------------------------------------------------- /R2FixCfg/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/display.h -------------------------------------------------------------------------------- /R2FixCfg/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/framework.h -------------------------------------------------------------------------------- /R2FixCfg/generaldlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/generaldlg.c -------------------------------------------------------------------------------- /R2FixCfg/glidetect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/glidetect.ico -------------------------------------------------------------------------------- /R2FixCfg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/main.c -------------------------------------------------------------------------------- /R2FixCfg/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/main.h -------------------------------------------------------------------------------- /R2FixCfg/pad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/pad.c -------------------------------------------------------------------------------- /R2FixCfg/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/pad.h -------------------------------------------------------------------------------- /R2FixCfg/paddlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/paddlg.c -------------------------------------------------------------------------------- /R2FixCfg/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/R2FixCfg/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/README.md -------------------------------------------------------------------------------- /Ray2Fix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/Ray2Fix.sln -------------------------------------------------------------------------------- /generate_gitver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/generate_gitver.cmd -------------------------------------------------------------------------------- /inc/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/inc/detours.h -------------------------------------------------------------------------------- /inc/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/inc/detver.h -------------------------------------------------------------------------------- /lib/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/lib/detours.lib -------------------------------------------------------------------------------- /third-party-licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icup321/Ray2Fix/HEAD/third-party-licenses.md --------------------------------------------------------------------------------