diff options
Diffstat (limited to 'src/refresh/gl/main.c')
-rw-r--r-- | src/refresh/gl/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/refresh/gl/main.c b/src/refresh/gl/main.c index e2b0233..8effa80 100644 --- a/src/refresh/gl/main.c +++ b/src/refresh/gl/main.c @@ -1107,8 +1107,8 @@ R_ModeChanged */ void R_ModeChanged(int width, int height, int flags, int rowbytes, void *pixels) { - r_config.width = width & ~7; - r_config.height = height & ~1; + r_config.width = width; + r_config.height = height; r_config.flags = flags; } |