mirror of
https://github.com/dborth/vbagx.git
synced 2024-12-28 03:31:49 +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()
|
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user