summaryrefslogtreecommitdiff
path: root/intro_gui.c
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2004-12-08 16:27:54 +0000
committerbjarni <bjarni@openttd.org>2004-12-08 16:27:54 +0000
commit1f31bee5e4f9cd63e5b13547918f3dc966bb10eb (patch)
treeafe64b67abbd356109d06712405e5bf262c89f32 /intro_gui.c
parent5b0743d66bf73a1bbfdd95beca039283091d8d46 (diff)
downloadopenttd-1f31bee5e4f9cd63e5b13547918f3dc966bb10eb.tar.xz
(svn r980) Fixed issues where MorphOS would get problems if AmigaOS would get a port, since MorphOS also have the flag __AMIGA__ defined (Tokai)
Diffstat (limited to 'intro_gui.c')
-rw-r--r--intro_gui.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/intro_gui.c b/intro_gui.c
index 77af0fd8c..83692e7f2 100644
--- a/intro_gui.c
+++ b/intro_gui.c
@@ -198,6 +198,8 @@ static void AskAbandonGameWndProc(Window *w, WindowEvent *e) {
SetDParam(0, STR_OSNAME_BEOS);
#elif defined(__MORPHOS__)
SetDParam(0, STR_OSNAME_MORPHOS);
+#elif defined(__AMIGA__) /* note: __AMIGA__ is defined under MorphOS too, so it must be after __MORPHOS__. */
+ SET_DPARAM16(0, STR_OSNAME_AMIGAOS);
#else
SetDParam(0, STR_0134_UNIX);
#endif