aboutsummaryrefslogtreecommitdiffstats
path: root/android/qemulator.c
diff options
context:
space:
mode:
Diffstat (limited to 'android/qemulator.c')
-rw-r--r--android/qemulator.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/android/qemulator.c b/android/qemulator.c
index f1b2dbc..36a9ec8 100644
--- a/android/qemulator.c
+++ b/android/qemulator.c
@@ -190,22 +190,6 @@ qemulator_done(QEmulator* emulator)
}
}
-void
-qemulator_get_screen_size( QEmulator* emulator,
- int *width,
- int *height )
-{
- AConfig* root = emulator->aconfig;
- AConfig* disp;
-
- *width = *height = 0;
- if (root == NULL || (disp = aconfig_find(root, "display")) == NULL)
- return;
-
- *width = aconfig_int(disp, "width", 0);
- *height = aconfig_int(disp, "height", 0);
-}
-
SkinLayout*
qemulator_get_layout(QEmulator* emulator)
{