Android: getCurrentOrientation uses getContext() to retrieve the activity (see bug #4825)
parent
0e294e90ae
commit
325ae5c35d
|
@ -381,10 +381,11 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
|
|||
public static int getCurrentOrientation() {
|
||||
int result = SDL_ORIENTATION_UNKNOWN;
|
||||
|
||||
if (mSingleton == null) {
|
||||
Activity activity = (Activity)getContext();
|
||||
if (activity == null) {
|
||||
return result;
|
||||
}
|
||||
Display display = SDLActivity.mSingleton.getWindowManager().getDefaultDisplay();
|
||||
Display display = activity.getWindowManager().getDefaultDisplay();
|
||||
|
||||
switch (display.getRotation()) {
|
||||
case Surface.ROTATION_0:
|
||||
|
|
Loading…
Reference in New Issue