Fix for bug #1776 by Jonathan Dearborn
This commit is contained in:
parent
be4412d0f2
commit
ba5fc3539a
1 changed files with 1 additions and 4 deletions
|
@ -32,7 +32,7 @@ import java.lang.*;
|
||||||
public class SDLActivity extends Activity {
|
public class SDLActivity extends Activity {
|
||||||
|
|
||||||
// Keep track of the paused state
|
// Keep track of the paused state
|
||||||
public static boolean mIsPaused;
|
public static boolean mIsPaused = false;
|
||||||
|
|
||||||
// Main components
|
// Main components
|
||||||
private static SDLActivity mSingleton;
|
private static SDLActivity mSingleton;
|
||||||
|
@ -71,9 +71,6 @@ public class SDLActivity extends Activity {
|
||||||
// So we can call stuff from static callbacks
|
// So we can call stuff from static callbacks
|
||||||
mSingleton = this;
|
mSingleton = this;
|
||||||
|
|
||||||
// Keep track of the paused state
|
|
||||||
mIsPaused = false;
|
|
||||||
|
|
||||||
// Set up the surface
|
// Set up the surface
|
||||||
mSurface = new SDLSurface(getApplication());
|
mSurface = new SDLSurface(getApplication());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue