mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2025-01-22 16:30:37 +01:00
Forgot initialize handler
This commit is contained in:
parent
ad5147a53f
commit
0a35d46131
@ -84,16 +84,19 @@ public class XashActivity extends Activity {
|
||||
// landscapeSensor is not supported until API9
|
||||
if( sdk < 9 )
|
||||
setRequestedOrientation(0);
|
||||
if( sdk < 12 )
|
||||
handler = new JoystickHandler_stub();
|
||||
else
|
||||
handler = new JoystickHandler_v12();
|
||||
|
||||
// keep screen on
|
||||
getWindow().setFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON, WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
|
||||
|
||||
// Set up the surface
|
||||
mSurface = new EngineSurface(getApplication());
|
||||
|
||||
if( sdk < 12 )
|
||||
handler = new JoystickHandler_stub();
|
||||
else
|
||||
handler = new JoystickHandler_v12();
|
||||
handler.init();
|
||||
|
||||
mLayout = new FrameLayout(this);
|
||||
mLayout.addView(mSurface);
|
||||
setContentView(mLayout);
|
||||
|
Loading…
x
Reference in New Issue
Block a user