aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2009-08-11 14:07:15 -0700
committerXavier Ducrohet <xav@android.com>2009-08-11 14:07:58 -0700
commit945a054848c64af7351620f09101f7a687498d34 (patch)
tree70e70e8cd5b43b6a42a6708ecf989b7c75a7f17b /android
parenta6940f7ecb6d7f098a0a58ea5c3ad313be4a23a7 (diff)
downloadexternal_qemu-945a054848c64af7351620f09101f7a687498d34.zip
external_qemu-945a054848c64af7351620f09101f7a687498d34.tar.gz
external_qemu-945a054848c64af7351620f09101f7a687498d34.tar.bz2
Shorten the title of the emulator to only contain very relevant info.
BUG: 2044596
Diffstat (limited to 'android')
-rw-r--r--android/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/android/main.c b/android/main.c
index f93bfa5..f0b9d16 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 );
}