GBA: Fix typo of GBAIsBIOS

This commit is contained in:
Anty-Lemon 2017-04-27 13:35:26 -04:00 committed by endrift
parent d84cee4700
commit a5f029c2fa
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ static void _GBACoreReset(struct mCore* core) {
mCoreConfigDirectory(path, PATH_MAX);
strncat(path, PATH_SEP "gba_bios.bin", PATH_MAX - strlen(path));
bios = VFileOpen(path, O_RDONLY);
if (bios && GBIsBIOS(bios)) {
if (bios && GBAIsBIOS(bios)) {
found = true;
} else if (bios) {
bios->close(bios);