From 5e79d88bb81186014bae87f805a9b630e4882195 Mon Sep 17 00:00:00 2001 From: Aruki Date: Tue, 25 Jul 2017 00:50:50 -0600 Subject: [PATCH] Minor bugfix - Prime 3 is not Wii de Asobu --- src/Core/GameProject/CGameProject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/GameProject/CGameProject.h b/src/Core/GameProject/CGameProject.h index 19a0c2ab..f7438420 100644 --- a/src/Core/GameProject/CGameProject.h +++ b/src/Core/GameProject/CGameProject.h @@ -104,7 +104,7 @@ public: inline float BuildVersion() const { return mBuildVersion; } inline bool IsWiiBuild() const { return mBuildVersion >= 3.f; } inline bool IsTrilogy() const { return mGame <= eCorruption && mBuildVersion >= 3.593f; } - inline bool IsWiiDeAsobu() const { return mGame <= eCorruption && mBuildVersion >= 3.f && mBuildVersion < 3.593f; } + inline bool IsWiiDeAsobu() const { return mGame <= eCorruption && mBuildVersion >= 3.570f && mBuildVersion < 3.593f; } }; #endif // CGAMEPROJECT_H