diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2009-09-03 14:13:03 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-09-03 14:13:03 -0700 |
commit | 37f0fd547e05c8bcfa59eee57c9988c1f3969fb1 (patch) | |
tree | fecc8ed146c5daaae3c7a7bd2ba59dff40068f1a /android | |
parent | ceb00f8c44e26d948e28b7a3ccef8fd2068589d9 (diff) | |
parent | b95f8924a76897bd0f983a9be07dc618d8b0e3d3 (diff) | |
download | external_qemu-37f0fd547e05c8bcfa59eee57c9988c1f3969fb1.zip external_qemu-37f0fd547e05c8bcfa59eee57c9988c1f3969fb1.tar.gz external_qemu-37f0fd547e05c8bcfa59eee57c9988c1f3969fb1.tar.bz2 |
merge from donut
Diffstat (limited to 'android')
-rw-r--r-- | android/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/android/main.c b/android/main.c index 0712f32..6888d44 100644 --- a/android/main.c +++ b/android/main.c @@ -516,9 +516,9 @@ qemulator_set_title( QEmulator* emulator ) } } - p = bufprint(p, end, "Android Emulator (%s:%d)", - avdInfo_getName( android_avdInfo ), - android_base_port ); + p = bufprint(p, end, "%d:%s", + android_base_port, + avdInfo_getName( android_avdInfo )); skin_window_set_title( emulator->window, temp ); } |