8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 676f840 commit 2525476Copy full SHA for 2525476
src/src/org/renpy/android/PythonActivity.java
@@ -38,7 +38,8 @@ public class PythonActivity extends Activity implements Runnable {
38
private static AudioThread mAudioThread = null;
39
40
// The SDLSurfaceView we contain.
41
- private SDLSurfaceView mView = null;
+ public SDLSurfaceView mView = null;
42
+ public PythonActivity mActivity = null;
43
44
// Did we launch our thread?
45
private boolean mLaunchedThread = false;
@@ -59,6 +60,7 @@ protected void onCreate(Bundle savedInstanceState) {
59
60
61
Hardware.context = this;
62
Action.context = this;
63
+ this.mActivity = this;
64
65
getWindowManager().getDefaultDisplay().getMetrics(Hardware.metrics);
66
0 commit comments