From 9b070b5405d11c74d89a747e912e627e39850f7c Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 27 Jun 2009 20:53:45 +0000 Subject: (svn r16677) -Codechange: Dimension width and height are unsigned. --- src/openttd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/openttd.cpp') 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) { -- cgit v1.2.3-70-g09d2