src/rev.h
author rubidium
Thu, 19 Jun 2008 11:45:52 +0000
changeset 11023 583f32658248
parent 10824 1a34ba6f338a
permissions -rw-r--r--
(svn r13579) -Fix [FS#2088]: process the order coming after a conditional order, otherwise the vehicle would already leaving the station before it knows where the next destination is, making it leave in the wrong way. However, after processing as many conditional orders as there are in the order list it will stop processing them in order to not create an infinite loop.
10402
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     1
/* $Id$ */
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     2
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     3
/** @file rev.h declaration of OTTD revision dependant variables */
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     4
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     5
#ifndef REV_H
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     6
#define REV_H
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     7
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
     8
extern const char _openttd_revision[];
10824
1a34ba6f338a (svn r13375) -Add: logging of actions that could possibly cause desyncs and crashes to simplify debugging. See readme.txt for details
smatz
parents: 10402
diff changeset
     9
extern const byte _openttd_revision_modified;
10402
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
    10
extern const uint32 _openttd_newgrf_version;
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
    11
b168fbb99f7c (svn r12944) -Codechange: use rev.h instead of externs at many places
smatz
parents:
diff changeset
    12
#endif /* REV_H */