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
commitb043d3e5678944e4960c8fe0c3d380825c41d0e5 (patch)
treeafe64b67abbd356109d06712405e5bf262c89f32 /intro_gui.c
parent945ceb06fc166379a9d0ffa4dfafe68894cba9e6 (diff)
downloadopenttd-b043d3e5678944e4960c8fe0c3d380825c41d0e5.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