Skip to content

Commit

Permalink
Android: Added missing space in three log messages.
Browse files Browse the repository at this point in the history
Also fixed a typo and changed tag string to constant.
  • Loading branch information
philippwiesemann committed May 31, 2015
1 parent 551fbf7 commit dbfd4fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -116,7 +116,7 @@ public static void initialize() {
protected void onCreate(Bundle savedInstanceState) {
Log.v(TAG, "Device: " + android.os.Build.DEVICE);
Log.v(TAG, "Model: " + android.os.Build.MODEL);
Log.v(TAG, "onCreate():" + mSingleton);
Log.v(TAG, "onCreate(): " + mSingleton);
super.onCreate(savedInstanceState);

SDLActivity.initialize();
Expand Down Expand Up @@ -180,7 +180,7 @@ public void onClick(DialogInterface dialog,int id) {
if (intent != null && intent.getData() != null) {
String filename = intent.getData().getPath();
if (filename != null) {
Log.v("SDL", "Get filename:" + filename);
Log.v(TAG, "Got filename: " + filename);
SDLActivity.onNativeDropFile(filename);
}
}
Expand Down Expand Up @@ -1060,7 +1060,7 @@ public void surfaceChanged(SurfaceHolder holder,
mWidth = width;
mHeight = height;
SDLActivity.onNativeResize(width, height, sdlFormat, mDisplay.getRefreshRate());
Log.v("SDL", "Window size:" + width + "x"+height);
Log.v("SDL", "Window size: " + width + "x" + height);

// Set mIsSurfaceReady to 'true' *before* making a call to handleResume
SDLActivity.mIsSurfaceReady = true;
Expand Down

0 comments on commit dbfd4fd

Please sign in to comment.