Skip to content

Commit

Permalink
Fix not building anymore (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
giulioz authored Apr 19, 2024
1 parent f53aac7 commit 9a96379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mcu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1343,11 +1343,11 @@ int main(int argc, char *argv[])
romset = ROM_SET_JV880;
autodetect = false;
}
else if (!stricmp(argv[i], "-gs"))
else if (!strcmp(argv[i], "-gs"))
{
resetType = ResetType::GS_RESET;
}
else if (!stricmp(argv[i], "-gm"))
else if (!strcmp(argv[i], "-gm"))
{
resetType = ResetType::GM_RESET;
}
Expand Down

0 comments on commit 9a96379

Please sign in to comment.