summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2016-03-01 20:00:22 +0000
committerfrosch <frosch@openttd.org>2016-03-01 20:00:22 +0000
commit0c7c0ada786fadfa33cabc22a6ad1468904a9854 (patch)
tree3914d724bf915a475700841de71ef8cfb980ff02 /src/game
parent56c54dcaec1100cc3c9866af5a4a513e95fa3b07 (diff)
downloadopenttd-0c7c0ada786fadfa33cabc22a6ad1468904a9854.tar.xz
(svn r27518) -Update: Numbers
Diffstat (limited to 'src/game')
-rw-r--r--src/game/game_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game_info.cpp b/src/game/game_info.cpp
index 9bb36d1aa..39088b846 100644
--- a/src/game/game_info.cpp
+++ b/src/game/game_info.cpp
@@ -25,7 +25,7 @@
static bool CheckAPIVersion(const char *api_version)
{
return strcmp(api_version, "1.2") == 0 || strcmp(api_version, "1.3") == 0 || strcmp(api_version, "1.4") == 0 ||
- strcmp(api_version, "1.5") == 0 || strcmp(api_version, "1.6") == 0;
+ strcmp(api_version, "1.5") == 0 || strcmp(api_version, "1.6") == 0 || strcmp(api_version, "1.7") == 0;
}
#if defined(WIN32)