Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix for bug #1776 by Jonathan Dearborn
Browse files Browse the repository at this point in the history
  • Loading branch information
gabomdq committed Apr 19, 2013
1 parent 33b9083 commit eadd9c5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -32,7 +32,7 @@
public class SDLActivity extends Activity {

// Keep track of the paused state
public static boolean mIsPaused;
public static boolean mIsPaused = false;

// Main components
private static SDLActivity mSingleton;
Expand Down Expand Up @@ -71,9 +71,6 @@ protected void onCreate(Bundle savedInstanceState) {
// So we can call stuff from static callbacks
mSingleton = this;

// Keep track of the paused state
mIsPaused = false;

// Set up the surface
mSurface = new SDLSurface(getApplication());

Expand Down

0 comments on commit eadd9c5

Please sign in to comment.