We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b1aaf5 commit 6911bdaCopy full SHA for 6911bda
src/player.cpp
@@ -832,6 +832,12 @@ void Player::CreateGameObjects() {
832
Output::Warning("This game uses Power Patch and might not run properly.");
833
}
834
835
+ // PowerMode2003 can be detected via the existence of the files "hvm.dll", "fmodex.dll" &
836
+ // "warp.dll", but some games seem to only ship with the latter of the three.
837
+ if (!FileFinder::Game().FindFile("warp.dll").empty()) {
838
+ Output::Warning("This game uses Power Mode 2003 and might not run properly.");
839
+ }
840
+
841
/*if (game_config.patch_key_patch.Get()) {
842
auto exe_util_types = Utils::MakeSvArray(".exe", ".dll", ".dat");
843
auto exe_util_names = Utils::MakeSvArray("ppcomp", "sfx");
0 commit comments