Skip to content

Commit

Permalink
Allow resizing the screen in windowed mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Nov 2, 2015
1 parent fbb3026 commit f3b1fca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GPU/Common/FramebufferCommon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ void CenterDisplayOutputRect(float *x, float *y, float *w, float *h, float origW
} else {
bool fullScreenZoom = true;
#ifndef MOBILE_DEVICE
fullScreenZoom = g_Config.bFullScreen;
// This would turn off small display in window mode. I think it's better to allow it.
// fullScreenZoom = g_Config.bFullScreen;
#endif
if (fullScreenZoom) {
if (g_Config.iSmallDisplayZoom != 0) {
Expand Down

0 comments on commit f3b1fca

Please sign in to comment.