(svn r1248) -Add: initial OS/2 support (read docs/ReadMe_OS2.txt) (orudge)

Works fine, beside some minor stuff:
  - Network is not working yet
  - Keyboard is not working
  - No MIDI support
  - 'A few file selector bugs involving drives'
This commit is contained in:
truelight
2004-12-23 14:46:16 +00:00
parent d91326fb4a
commit a9bb5be49d
11 changed files with 5781 additions and 9 deletions

View File

@@ -38,9 +38,13 @@ bool IsValidTile(uint tile);
static inline Point RemapCoords(int x, int y, int z)
{
#if !defined(NEW_ROTATION)
Point pt = { (y - x) * 2, y + x - z };
Point pt;
pt.x = (y - x) * 2;
pt.y = y + x - z;
#else
Point pt = { (x + y) * 2, x - y - z };
Point pt;
pt.x = (x + y) * 2;
pt.y = x - y - z;
#endif
return pt;
}