Changed warning message for android landscape device detection so it was more correct.

[CL 2071796 by Daniel Lamb in Main branch]
This commit is contained in:
Daniel Lamb
2014-05-13 13:21:24 -04:00
committed by UnrealBot
parent 1e686e0134
commit ee6e1e34f3

View File

@@ -172,7 +172,7 @@ public class GameActivity extends NativeActivity implements GoogleApiClient.Conn
if ( getDeviceDefaultOrientation() == Configuration.ORIENTATION_LANDSCAPE )
{
Log.debug( "Setting screen orientation to landscape because it's a Sheild" );
Log.debug( "Setting screen orientation to landscape because we have detected landscape device" );
_activity.setRequestedOrientation( android.content.pm.ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE );
}