mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-17 07:31:01 +00:00
Android: Fix scaling issue on configuration changes. Why was that division by 2 there??
Must have been some old left-over debug code.
This commit is contained in:
parent
ea047fa43a
commit
d44309405a
@ -681,7 +681,7 @@ public class NativeActivity extends Activity implements SurfaceHolder.Callback {
|
||||
Point sz = new Point();
|
||||
getDesiredBackbufferSize(sz);
|
||||
if (sz.x > 0) {
|
||||
mGLSurfaceView.getHolder().setFixedSize(sz.x/2, sz.y/2);
|
||||
mGLSurfaceView.getHolder().setFixedSize(sz.x, sz.y);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user