diff options
author | rubidium <rubidium@openttd.org> | 2007-08-30 20:40:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-08-30 20:40:33 +0000 |
commit | 8a6cc3aa104b5f8631dcb74343dcd68ffa3308ec (patch) | |
tree | 1e96eadb775a124c36850f50c357f93af14e4be2 /src/waypoint.h | |
parent | 9833639b00ff84b671a3943e350ed195935e31ad (diff) | |
download | openttd-8a6cc3aa104b5f8631dcb74343dcd68ffa3308ec.tar.xz |
(svn r11009) -Codechange: unvirtualise IsValid as that isn't needed with templates. This gives up to 10% performance increase in games with lots of vehicles.
Diffstat (limited to 'src/waypoint.h')
-rw-r--r-- | src/waypoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/waypoint.h b/src/waypoint.h index 4926d1313..46ffbc89e 100644 --- a/src/waypoint.h +++ b/src/waypoint.h @@ -30,7 +30,7 @@ struct Waypoint : PoolItem<Waypoint, WaypointID, &_Waypoint_pool> { Waypoint(TileIndex tile = 0); ~Waypoint(); - bool IsValid() const; + inline bool IsValid() const { return this->xy != 0; } }; static inline bool IsValidWaypointID(WaypointID index) |