mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
fix gb mono detection
This commit is contained in:
parent
a769780c35
commit
fe4b8d46ef
@ -653,10 +653,11 @@ static bool ValidGameId(u32 id)
|
||||
|
||||
bool IsGameboyGame()
|
||||
{
|
||||
if(cartridgeType == 1 || gbCgbMode || gbSgbMode)
|
||||
if(cartridgeType == 1 && !gbCgbMode && !gbSgbMode)
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
bool IsGBAGame()
|
||||
{
|
||||
if(cartridgeType == 2)
|
||||
|
Loading…
Reference in New Issue
Block a user