Skip to content

Commit

Permalink
Log Android hardware at startup (thanks, rettichschnidi!).
Browse files Browse the repository at this point in the history
Fixes Bugzilla #2653.
  • Loading branch information
icculus committed Apr 8, 2015
1 parent 6a126a4 commit 8da7e8a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -114,6 +114,8 @@ public static void initialize() {
// Setup
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.v("SDL", "Device: " + android.os.Build.DEVICE);
Log.v("SDL", "Model: " + android.os.Build.MODEL);
Log.v("SDL", "onCreate():" + mSingleton);
super.onCreate(savedInstanceState);

Expand Down

0 comments on commit 8da7e8a

Please sign in to comment.