├── .gitattributes ├── .gitignore ├── HighFPSFix.sln ├── HighFPSFix.vcxproj ├── HighFPSFix.vcxproj.filters ├── LICENSE ├── README.md ├── calls.h ├── common ├── IDataStream.cpp ├── IDataStream.h ├── IDebugLog.cpp ├── IDebugLog.h ├── IDynamicCreate.cpp ├── IDynamicCreate.h ├── IErrors.cpp ├── IErrors.h ├── IPrefix.cpp ├── IPrefix.h ├── ISingleton.cpp ├── ISingleton.h ├── ITypes.cpp ├── ITypes.h ├── PluginAPI.h ├── SafeWrite.cpp ├── SafeWrite.h ├── Utilities.cpp ├── Utilities.h ├── utility.cpp └── utility.h ├── dllmain.c ├── fps.h └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/.gitignore -------------------------------------------------------------------------------- /HighFPSFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/HighFPSFix.sln -------------------------------------------------------------------------------- /HighFPSFix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/HighFPSFix.vcxproj -------------------------------------------------------------------------------- /HighFPSFix.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/HighFPSFix.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/README.md -------------------------------------------------------------------------------- /calls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/calls.h -------------------------------------------------------------------------------- /common/IDataStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IDataStream.cpp -------------------------------------------------------------------------------- /common/IDataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IDataStream.h -------------------------------------------------------------------------------- /common/IDebugLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IDebugLog.cpp -------------------------------------------------------------------------------- /common/IDebugLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IDebugLog.h -------------------------------------------------------------------------------- /common/IDynamicCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IDynamicCreate.cpp -------------------------------------------------------------------------------- /common/IDynamicCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IDynamicCreate.h -------------------------------------------------------------------------------- /common/IErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IErrors.cpp -------------------------------------------------------------------------------- /common/IErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IErrors.h -------------------------------------------------------------------------------- /common/IPrefix.cpp: -------------------------------------------------------------------------------- 1 | #include "IPrefix.h" 2 | -------------------------------------------------------------------------------- /common/IPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/IPrefix.h -------------------------------------------------------------------------------- /common/ISingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/ISingleton.cpp -------------------------------------------------------------------------------- /common/ISingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/ISingleton.h -------------------------------------------------------------------------------- /common/ITypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/ITypes.cpp -------------------------------------------------------------------------------- /common/ITypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/ITypes.h -------------------------------------------------------------------------------- /common/PluginAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/PluginAPI.h -------------------------------------------------------------------------------- /common/SafeWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/SafeWrite.cpp -------------------------------------------------------------------------------- /common/SafeWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/SafeWrite.h -------------------------------------------------------------------------------- /common/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/Utilities.cpp -------------------------------------------------------------------------------- /common/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/Utilities.h -------------------------------------------------------------------------------- /common/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/utility.cpp -------------------------------------------------------------------------------- /common/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/common/utility.h -------------------------------------------------------------------------------- /dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/dllmain.c -------------------------------------------------------------------------------- /fps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/fps.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c6-dev/fose-fps-fix/HEAD/main.cpp --------------------------------------------------------------------------------