From 7a9807f030b80c3c38b6587a385ad7d2e44d16f7 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 28 Mar 2015 23:19:21 -0700 Subject: [PATCH] GBA: Fix BIOS loading setting --- src/gba/supervisor/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/supervisor/config.c b/src/gba/supervisor/config.c index 9f3427af0..7b4058028 100644 --- a/src/gba/supervisor/config.c +++ b/src/gba/supervisor/config.c @@ -190,7 +190,7 @@ void GBAConfigMap(const struct GBAConfig* config, struct GBAOptions* opts) { } int fakeBool; - if (_lookupIntValue(config, "useSync", &fakeBool)) { + if (_lookupIntValue(config, "useBios", &fakeBool)) { opts->useBios = fakeBool; } if (_lookupIntValue(config, "audioSync", &fakeBool)) {