diff options
author | rubidium <rubidium@openttd.org> | 2008-05-06 22:41:28 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-06 22:41:28 +0000 |
commit | 822c130b70f96a165c86cd5d2c13e4e4036e2b60 (patch) | |
tree | 70123cbc90e8607bae383b589f332a0bbb3e6420 /src | |
parent | 402a1e24bae42c3789a7e000da7ca3c0f07d5dd0 (diff) | |
download | openttd-822c130b70f96a165c86cd5d2c13e4e4036e2b60.tar.xz |
(svn r12978) -Codechange: "\\0" is not needed for the MorphOS revision string. Patch by tokai.
Diffstat (limited to 'src')
-rw-r--r-- | src/rev.cpp.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rev.cpp.in b/src/rev.cpp.in index e8570f746..458f92e86 100644 --- a/src/rev.cpp.in +++ b/src/rev.cpp.in @@ -41,5 +41,5 @@ const uint32 _openttd_newgrf_version = 0 << 28 | 7 << 24 | 0 << 20 | 0 << 19 | ( /** * Variable used by MorphOS to show the version. */ -extern const char morphos_versions_tag[] = "\\0$VER: OpenTTD @@VERSION@@ (@@DATE@@) OpenTTD Team [MorphOS, PowerPC]"; +extern const char morphos_versions_tag[] = "$VER: OpenTTD @@VERSION@@ (@@DATE@@) OpenTTD Team [MorphOS, PowerPC]"; #endif |