aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/android/android.cpp
diff options
context:
space:
mode:
authordhewg2011-04-05 19:01:51 +0200
committerdhewg2011-04-05 19:06:59 +0200
commit507bff8233662019e7b7078b645ce035e796af5b (patch)
tree814eb0f6c9f0bb3007caceeb42f24a8f765b6be8 /backends/platform/android/android.cpp
parentd50e7af797266e20dda17a80a45c1af45b176d3d (diff)
downloadscummvm-rg350-507bff8233662019e7b7078b645ce035e796af5b.tar.gz
scummvm-rg350-507bff8233662019e7b7078b645ce035e796af5b.tar.bz2
scummvm-rg350-507bff8233662019e7b7078b645ce035e796af5b.zip
ANDROID: Log device manufacturer, model and brand
Diffstat (limited to 'backends/platform/android/android.cpp')
-rw-r--r--backends/platform/android/android.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp
index 6346ffa7a3..eb0e164109 100644
--- a/backends/platform/android/android.cpp
+++ b/backends/platform/android/android.cpp
@@ -135,7 +135,10 @@ OSystem_Android::OSystem_Android(int audio_sample_rate, int audio_buffer_size) :
_trackball_scale(2) {
Common::String fp = getSystemProperty("ro.build.fingerprint");
- LOGI("Running on: [%s] [%s] SDK:%s ABI:%s",
+ LOGI("Running on: [%s] [%s] [%s] [%s] [%s] SDK:%s ABI:%s",
+ getSystemProperty("ro.product.manufacturer").c_str(),
+ getSystemProperty("ro.product.model").c_str(),
+ getSystemProperty("ro.product.brand").c_str(),
fp.c_str(),
getSystemProperty("ro.build.display.id").c_str(),
getSystemProperty("ro.build.version.sdk").c_str(),