diff options
author | frosch <github@elsenhans.name> | 2019-03-03 20:51:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-03 20:51:57 +0100 |
commit | a67ee025294278f9113a1c8bcb5ee91d9e174f69 (patch) | |
tree | 7309d2ebe35dc37363e9d7e996849bdba56a6214 /src/game | |
parent | eb46a89855c01a4898f5a9760969f2d9a7b3137d (diff) | |
download | openttd-a67ee025294278f9113a1c8bcb5ee91d9e174f69.tar.xz |
Change: Heading for 1.10 now (#7319)
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/game_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game_info.cpp b/src/game/game_info.cpp index f8c04608b..0aa316174 100644 --- a/src/game/game_info.cpp +++ b/src/game/game_info.cpp @@ -26,7 +26,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.7") == 0 || - strcmp(api_version, "1.8") == 0 || strcmp(api_version, "1.9") == 0; + strcmp(api_version, "1.8") == 0 || strcmp(api_version, "1.9") == 0 || strcmp(api_version, "1.10") == 0; } #if defined(_WIN32) |