Fix for bug #1776 by Jonathan Dearborn

This commit is contained in:
Gabriel Jacobo 2013-04-19 14:40:39 -03:00
parent be4412d0f2
commit ba5fc3539a

View file

@ -32,7 +32,7 @@ import java.lang.*;
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;
@ -71,9 +71,6 @@ public class SDLActivity extends Activity {
// 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());