aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--android/qemulator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/qemulator.c b/android/qemulator.c
index c90a674..ee9ccbb 100644
--- a/android/qemulator.c
+++ b/android/qemulator.c
@@ -98,6 +98,8 @@ qemulator_fb_update( void* _emulator, int x, int y, int w, int h )
QEmulator* emulator = _emulator;
if (!emulator->window) {
+ if (emulator->opts->no_window)
+ return;
qemulator_setup( emulator );
}
skin_window_update_display( emulator->window, x, y, w, h );