music/os2_m.h
author bjarni
Thu, 11 May 2006 13:31:14 +0000
changeset 3816 28ee8b8c2522
parent 2189 5cdc11ffeaa4
permissions -rw-r--r--
(svn r4826) -Fix: [autoreplace] fixed possible problem when autoreplacing and was number of vehicles (of a type, not total) was reached
now the new vehicle gets the same number as the old one, completely removing the problem where we could run out of numbers
since we don't have to find free numbers for the new vehicles, autoreplace should be somewhat faster, specially in late games
NOTE: in CmdBuildRailVehicle(), bit 0 and 1 in p2 have been switched to make the meaning of bit 0 consistent with the other build commands. CmdCloneVehicle() is modified to follow this as well
2186
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2175
diff changeset
     1
/* $Id$ */
db48cf29b983 (svn r2701) Insert Id tags into all source files
tron
parents: 2175
diff changeset
     2
2175
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
     3
#ifndef MUSIC_OS2_H
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
     4
#define MUSIC_OS2_H
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
     5
2189
5cdc11ffeaa4 (svn r2704) Remove . from include path again, too much trouble. Also add some #ifdefs and #includes for the Windows build
tron
parents: 2186
diff changeset
     6
#include "../hal.h"
2175
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
     7
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
     8
extern const HalMusicDriver _os2_music_driver;
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
     9
06415cf75dc1 (svn r2689) - Split OS/2 music driver into os2_m.c, update project file
orudge
parents:
diff changeset
    10
#endif