(svn r2681) - Fix OS/2 port, please do not modify openttd.wpj/tgt by hand unless you know what you're doing!

This commit is contained in:
orudge
2005-07-22 16:14:24 +00:00
parent 1b6ff121f4
commit c50223526c
4 changed files with 22 additions and 11 deletions

12
os2.c
View File

@@ -1,11 +1,15 @@
#include "stdafx.h"
#include "openttd.h"
#include "variables.h"
#include "window.h"
#include "string.h"
#include "table/strings.h"
#include "hal.h"
#include "gfx.h"
#include "gui.h"
#include "saveload.h"
#include "functions.h"
#include "macros.h"
#include <direct.h>
#include <unistd.h>
@@ -25,6 +29,8 @@
#include <os2.h>
#include <os2me.h>
#include <i86.h>
#if defined(WITH_SDL)
#include <SDL.h>
#endif
@@ -772,3 +778,9 @@ void JoinOTTDThread(void)
DosWaitThread(&thread1, DCWW_WAIT);
}
void CSleep(int milliseconds)
{
delay(milliseconds);
}