summaryrefslogtreecommitdiff
path: root/macosx/EmuThread.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/EmuThread.m')
-rw-r--r--macosx/EmuThread.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/macosx/EmuThread.m b/macosx/EmuThread.m
index f8be4338..4818ff1a 100644
--- a/macosx/EmuThread.m
+++ b/macosx/EmuThread.m
@@ -19,6 +19,7 @@ EmuThread *emuThread;
NSString *defrostPath = nil;
static int safeEvent;
static int paused;
+static int runbios;
static pthread_cond_t eventCond;
static pthread_mutex_t eventMutex;
@@ -227,6 +228,7 @@ done:
safeEvent = EMUEVENT_NONE;
paused = NO;
+ runbios = NO;
if (SysInit() != 0) {
pthread_mutex_unlock(&eventMutex);
@@ -262,6 +264,7 @@ done:
safeEvent = EMUEVENT_NONE;
paused = NO;
+ runbios = YES;
if (SysInit() != 0) {
pthread_mutex_unlock(&eventMutex);
@@ -357,6 +360,11 @@ done:
return paused;
}
++ (BOOL)isRunBios
+{
+ return runbios;
+}
+
+ (BOOL)active
{
return emuThread ? YES : NO;