summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 1dc8eb73c..9f9fd127d 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -555,8 +555,8 @@ int ttd_main(int argc, char *argv[])
/* The width and height must be at least 1 pixel, this
* way all internal drawing routines work correctly. */
- if (_cur_resolution.width <= 0) _cur_resolution.width = 1;
- if (_cur_resolution.height <= 0) _cur_resolution.height = 1;
+ if (_cur_resolution.width == 0) _cur_resolution.width = 1;
+ if (_cur_resolution.height == 0) _cur_resolution.height = 1;
#if defined(ENABLE_NETWORK)
if (dedicated_host) {