summaryrefslogtreecommitdiff
path: root/src/os2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os2.cpp')
-rw-r--r--src/os2.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/os2.cpp b/src/os2.cpp
index a44b27f2f..ee8937a03 100644
--- a/src/os2.cpp
+++ b/src/os2.cpp
@@ -134,13 +134,13 @@ void ShowInfo(const char *str)
HMQ hmq;
ULONG rc;
- // init PM env.
+ /* init PM env. */
hmq = WinCreateMsgQueue((hab = WinInitialize(0)), 0);
- // display the box
+ /* display the box */
rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, (const unsigned char *)str, (const unsigned char *)"OpenTTD", 0, MB_OK | MB_MOVEABLE | MB_INFORMATION);
- // terminate PM env.
+ /* terminate PM env. */
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
}
@@ -151,13 +151,13 @@ void ShowOSErrorBox(const char *buf, bool system)
HMQ hmq;
ULONG rc;
- // init PM env.
+ /* init PM env. */
hmq = WinCreateMsgQueue((hab = WinInitialize(0)), 0);
- // display the box
+ /* display the box */
rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, (const unsigned char *)buf, (const unsigned char *)"OpenTTD", 0, MB_OK | MB_MOVEABLE | MB_ERROR);
- // terminate PM env.
+ /* terminate PM env. */
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
}