fix gb mono detection

This commit is contained in:
dborth 2010-05-31 19:20:05 +00:00
parent a769780c35
commit fe4b8d46ef

View File

@ -653,10 +653,11 @@ static bool ValidGameId(u32 id)
bool IsGameboyGame() bool IsGameboyGame()
{ {
if(cartridgeType == 1 || gbCgbMode || gbSgbMode) if(cartridgeType == 1 && !gbCgbMode && !gbSgbMode)
return true; return true;
return false; return false;
} }
bool IsGBAGame() bool IsGBAGame()
{ {
if(cartridgeType == 2) if(cartridgeType == 2)