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 {
|
||||
|
||||
// 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());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue