├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── StarTrekResurgenceFix.filters ├── StarTrekResurgenceFix.ini ├── StarTrekResurgenceFix.sln ├── StarTrekResurgenceFix.vcxproj ├── extras.md └── src ├── dllmain.cpp ├── helper.hpp ├── stdafx.cpp └── stdafx.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | ko_fi: lyall 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/README.md -------------------------------------------------------------------------------- /StarTrekResurgenceFix.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/StarTrekResurgenceFix.filters -------------------------------------------------------------------------------- /StarTrekResurgenceFix.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/StarTrekResurgenceFix.ini -------------------------------------------------------------------------------- /StarTrekResurgenceFix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/StarTrekResurgenceFix.sln -------------------------------------------------------------------------------- /StarTrekResurgenceFix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/StarTrekResurgenceFix.vcxproj -------------------------------------------------------------------------------- /extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/extras.md -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/src/helper.hpp -------------------------------------------------------------------------------- /src/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyall/StarTrekResurgenceFix/HEAD/src/stdafx.h --------------------------------------------------------------------------------