We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f721cf commit c71cfc4Copy full SHA for c71cfc4
src/player.cpp
@@ -840,6 +840,12 @@ void Player::CreateGameObjects() {
840
Output::Warning("This game uses Power Patch and might not run properly.");
841
}
842
843
+ // PowerMode2003 can be detected via the existence of the files "hvm.dll", "fmodex.dll" &
844
+ // "warp.dll", but some games seem to only ship with the latter of the three.
845
+ if (!FileFinder::Game().FindFile("warp.dll").empty()) {
846
+ Output::Warning("This game uses Power Mode 2003 and might not run properly.");
847
+ }
848
+
849
/*if (game_config.patch_key_patch.Get()) {
850
auto exe_util_types = Utils::MakeSvArray(".exe", ".dll", ".dat");
851
auto exe_util_names = Utils::MakeSvArray("ppcomp", "sfx");
0 commit comments