summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authorskidd13 <skidd13@openttd.org>2007-11-19 18:38:10 +0000
committerskidd13 <skidd13@openttd.org>2007-11-19 18:38:10 +0000
commit98f66552beadfa14cf28cd126fc462a5abe3087b (patch)
tree7818a2f346fc9a85d84a2a844989ea1a90136b90 /src/openttd.cpp
parent9e385d2427fd017e90182aa152e488ce026ace19 (diff)
downloadopenttd-98f66552beadfa14cf28cd126fc462a5abe3087b.tar.xz
(svn r11475) -Codechange: rename clamp and clampu to Clamp and ClampU to fit with the coding style
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 0ab4dc4c0..62eab9aba 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -280,8 +280,8 @@ static void ParseResolution(int res[2], const char *s)
return;
}
- res[0] = clamp(strtoul(s, NULL, 0), 64, MAX_SCREEN_WIDTH);
- res[1] = clamp(strtoul(t + 1, NULL, 0), 64, MAX_SCREEN_HEIGHT);
+ res[0] = Clamp(strtoul(s, NULL, 0), 64, MAX_SCREEN_WIDTH);
+ res[1] = Clamp(strtoul(t + 1, NULL, 0), 64, MAX_SCREEN_HEIGHT);
}
static void InitializeDynamicVariables()