all repos — mgba @ a5f029c2faa14f9e65d6c8413498057348100ede

mGBA Game Boy Advance Emulator

GBA: Fix typo of GBAIsBIOS
Anty-Lemon Anty-Lemon@users.noreply.github.com
Thu, 27 Apr 2017 13:35:26 -0400
commit

a5f029c2faa14f9e65d6c8413498057348100ede

parent

d84cee4700a11825259d6396d0b519b0b997f641

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/gba/core.csrc/gba/core.c

@@ -335,7 +335,7 @@ char path[PATH_MAX];

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);