------------------------------------------------------------------------ r16353 | smatz | 2009-05-18 17:40:03 +0000 (Mon, 18 May 2009) | 1 line -Fix (r1): invalid read when OTTD savegame contains VEH_INVALID ------------------------------------------------------------------------ r16352 | smatz | 2009-05-18 16:21:28 +0000 (Mon, 18 May 2009) | 1 line -Codechange: use PoolItem::GetIfValid() instead of PoolItem::IsValidID() and PoolItem::Get() ------------------------------------------------------------------------ r16351 | smatz | 2009-05-18 12:01:13 +0000 (Mon, 18 May 2009) | 1 line -Fix (r14773): signal handler could end in endless loop ------------------------------------------------------------------------ r16350 | smatz | 2009-05-18 01:35:15 +0000 (Mon, 18 May 2009) | 1 line -Codechange: make some 'rail track is present' checks more 'secure' ------------------------------------------------------------------------ r16349 | smatz | 2009-05-18 01:26:23 +0000 (Mon, 18 May 2009) | 1 line -Codechange: rename IsPlainRailTile() to IsPlainRail(), introduce shiny new IsPlainRailTile() ------------------------------------------------------------------------ r16348 | smatz | 2009-05-18 00:33:24 +0000 (Mon, 18 May 2009) | 1 line -Fix (r16280): buoys with invalid station ID could be left in the game ------------------------------------------------------------------------ r16347 | rubidium | 2009-05-17 20:38:22 +0000 (Sun, 17 May 2009) | 2 lines -Cleanup: remove some unused defines from oldpool.h. ------------------------------------------------------------------------ r16346 | rubidium | 2009-05-17 20:38:05 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: don't exploit the pool system in the way done for the saveload pool; it makes writing replacements unnecessarily difficult. And now we've got SmallVector that does more than enough for saving with less lines of 'interface' code. ------------------------------------------------------------------------ r16345 | rubidium | 2009-05-17 19:36:28 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: replace the Sound(Entry) pool with a simple vector of SoundEntries. ------------------------------------------------------------------------ r16344 | rubidium | 2009-05-17 19:27:50 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: s/FileEntry/SoundEntry/ ------------------------------------------------------------------------ r16343 | frosch | 2009-05-17 19:14:22 +0000 (Sun, 17 May 2009) | 1 line -Fix (r16066): Invalid free on exit after changing base graphics set in game. ------------------------------------------------------------------------ r16342 | frosch | 2009-05-17 18:21:21 +0000 (Sun, 17 May 2009) | 1 line -Feature(tte): Display base graphics description in game options window. ------------------------------------------------------------------------ r16341 | rubidium | 2009-05-17 17:48:05 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: just use a static array instead of a never freed malloc ------------------------------------------------------------------------ r16340 | rubidium | 2009-05-17 17:17:48 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: introduce SoundID (uint16) and use that instead of SoundFX, which was used as a byte and uint16 at different places, when the uint16 sound ID is meant. ------------------------------------------------------------------------ r16339 | rubidium | 2009-05-17 17:00:30 +0000 (Sun, 17 May 2009) | 2 lines -Fix: [NewGRF] When overriding 'original sounds', only allow overriding of the 'original sounds' and not any other that is already loaded. ------------------------------------------------------------------------ r16338 | smatz | 2009-05-17 16:28:29 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: split loading of references to two phases In the first phase, indexes are stored. In the second phase, indexes are checked for validity and converted to pointers ------------------------------------------------------------------------ r16337 | rubidium | 2009-05-17 14:57:14 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: remove pointless variable + wrapper function; having it return anything else than ORIGINAL_SAMPLE_COUNT is asking for NewGRFs failing to load (due to invalid sample index), thus desyncs ------------------------------------------------------------------------ r16336 | rubidium | 2009-05-17 14:32:13 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: make the SpriteGroup pool more like the 'normal' pools ------------------------------------------------------------------------ r16335 | smatz | 2009-05-17 11:47:56 +0000 (Sun, 17 May 2009) | 1 line -Codechange: indenting fixes in saveload.cpp ------------------------------------------------------------------------ r16334 | smatz | 2009-05-17 11:43:51 +0000 (Sun, 17 May 2009) | 1 line -Codechange: use NeedLength enum ------------------------------------------------------------------------ r16333 | rubidium | 2009-05-17 11:18:34 +0000 (Sun, 17 May 2009) | 2 lines -Cleanup: remove a bunch of unused wrapper functions. ------------------------------------------------------------------------ r16332 | rubidium | 2009-05-17 11:17:53 +0000 (Sun, 17 May 2009) | 2 lines -Codechange: replace some -1 + 1 with 'nothing' or <= .. - 1 with < .. - 1 (both caused due to wrapper functions) ------------------------------------------------------------------------ r16331 | smatz | 2009-05-17 11:15:11 +0000 (Sun, 17 May 2009) | 1 line -Codechange: replace _sl.save by an enum ------------------------------------------------------------------------ r16330 | rubidium | 2009-05-17 10:59:40 +0000 (Sun, 17 May 2009) | 2 lines -Fix (r16329): we were shortly visited by Mr. Kenobi. ------------------------------------------------------------------------ r16329 | rubidium | 2009-05-17 10:35:13 +0000 (Sun, 17 May 2009) | 2 lines -Fix: possible desync when removing lots of towns in-game (not that we allow removing towns now, but better not have desync prone code lingering around) ------------------------------------------------------------------------ r16328 | rubidium | 2009-05-17 10:19:00 +0000 (Sun, 17 May 2009) | 2 lines -Fix: desync when removing lots of stations ------------------------------------------------------------------------ r16327 | smatz | 2009-05-17 01:00:56 +0000 (Sun, 17 May 2009) | 1 line -Codechange: replace IsValidPoolItemID(index) by PoolItem::IsValidID(index) ------------------------------------------------------------------------ r16326 | smatz | 2009-05-16 23:44:36 +0000 (Sat, 16 May 2009) | 1 line -Codechange: replace GetPoolItemPoolSize() by PoolItem::GetPoolSize() ------------------------------------------------------------------------ r16325 | smatz | 2009-05-16 23:34:14 +0000 (Sat, 16 May 2009) | 1 line -Codechange: replace GetPoolItem(index) by PoolItem::Get(index) ------------------------------------------------------------------------ r16323 | rubidium | 2009-05-16 20:10:58 +0000 (Sat, 16 May 2009) | 2 lines -Fix [FS#2900]: desyncs due to the fact that depot searching with a maximum search depth simply does not work with YAPF's caches. ------------------------------------------------------------------------ r16322 | rubidium | 2009-05-16 20:08:49 +0000 (Sat, 16 May 2009) | 2 lines -Fix [FS#2873]: trains could get stuck in a depot when they wanted to go to the same depot again. ------------------------------------------------------------------------ r16321 | rubidium | 2009-05-16 18:58:15 +0000 (Sat, 16 May 2009) | 2 lines -Fix (r5946): in the scenario editor change the (starting) game year of the scenario, not the (starting) game year for new games/scenarios. ------------------------------------------------------------------------ r16320 | smatz | 2009-05-16 18:28:31 +0000 (Sat, 16 May 2009) | 1 line -Fix (r11939): loading of savegames created in revision between 0.3.5 and 0.3.6 caused crash ------------------------------------------------------------------------ r16319 | translators | 2009-05-16 17:35:53 +0000 (Sat, 16 May 2009) | 7 lines -Update: WebTranslator2 update to 2009-05-16 17:35:44 arabic_egypt - 1 fixed by khaloofah (1) english_US - 24 fixed by WhiteRabbit (24) esperanto - 6 fixed by maristo (6) german - 1 changed by planetmaker (1) welsh - 9 fixed by welshdragon (9) ------------------------------------------------------------------------ r16318 | rubidium | 2009-05-16 12:36:33 +0000 (Sat, 16 May 2009) | 3 lines -Change: use !! instead of @@ in src/*.in too. -Change: use @ instead of ~ in configure/Makefiles so Debian's build system(s) can also build RC binaries. ------------------------------------------------------------------------ r16317 | alberth | 2009-05-16 11:25:19 +0000 (Sat, 16 May 2009) | 1 line -Codechange: Generalized finding a widget by type. ------------------------------------------------------------------------ r16316 | yexo | 2009-05-16 00:16:43 +0000 (Sat, 16 May 2009) | 1 line -Fix (r16287,before): Set the autorenew settings for new AI companies to the default values, not to 0 or the local settings ------------------------------------------------------------------------ r16315 | yexo | 2009-05-15 23:55:06 +0000 (Fri, 15 May 2009) | 1 line -Codechange: move the autorenew settings to a new CompanySettings struct ------------------------------------------------------------------------ r16314 | frosch | 2009-05-15 22:45:31 +0000 (Fri, 15 May 2009) | 1 line -Fix (r9315): Allow accessing the houseage when the house is not yet built. ------------------------------------------------------------------------ r16313 | rubidium | 2009-05-15 17:35:54 +0000 (Fri, 15 May 2009) | 2 lines -Fix: also pass the minimum MacOSX version and some other binary type dependend flags to g++ to get the defines for (make)depend ------------------------------------------------------------------------ r16312 | rubidium | 2009-05-15 17:32:07 +0000 (Fri, 15 May 2009) | 2 lines -Codechange: unduplicate yapf (rail) cache debugging. ------------------------------------------------------------------------ r16311 | frosch | 2009-05-15 16:07:36 +0000 (Fri, 15 May 2009) | 1 line -Fix: (Get|Set)TrackBits() is only valid for RAIL_TILE_NORMAL and _SIGNALS. ------------------------------------------------------------------------ r16308 | smatz | 2009-05-14 23:40:03 +0000 (Thu, 14 May 2009) | 1 line -Fix: parameter is invalid when it's equal to length of an array (Yexo) ------------------------------------------------------------------------ r16307 | glx | 2009-05-14 21:59:24 +0000 (Thu, 14 May 2009) | 1 line -Fix: makedepend can't handle the amount of files we have and it also miss some dependencies. That's why we introduce our custom implementation of makedepend. ------------------------------------------------------------------------ r16306 | yexo | 2009-05-14 18:09:50 +0000 (Thu, 14 May 2009) | 1 line -Fix [FS#2901] (r15027): Close all windows before unloading the AI system as closing the content-download window will rescan for AIs ------------------------------------------------------------------------ r16305 | rubidium | 2009-05-14 12:08:24 +0000 (Thu, 14 May 2009) | 2 lines -Codechange: force-enable extra sync checking when random debugging is enable and give the calling location of Chance16(R) instead of the Random call within those functions. ------------------------------------------------------------------------ r16304 | rubidium | 2009-05-13 22:51:31 +0000 (Wed, 13 May 2009) | 2 lines -Codechange: remove some magic numbers from the newgrf add window so it mirrors nicely. ------------------------------------------------------------------------ r16303 | frosch | 2009-05-13 21:45:56 +0000 (Wed, 13 May 2009) | 1 line -Codechange: Use the question mark as default sprite when creating vehicles, instead of arbitrary sprites not related to the vehicle. (though that also applies to the question mark) ------------------------------------------------------------------------ r16302 | smatz | 2009-05-13 21:38:23 +0000 (Wed, 13 May 2009) | 1 line -Codechange: remove Vehicle::AllocateList ------------------------------------------------------------------------ r16301 | smatz | 2009-05-13 20:30:46 +0000 (Wed, 13 May 2009) | 1 line -Cleanup: remove unused parameter ------------------------------------------------------------------------ r16300 | smatz | 2009-05-13 19:26:47 +0000 (Wed, 13 May 2009) | 1 line -Codechange: reduce usage of Vehicle::AllocateList ------------------------------------------------------------------------ r16299 | smatz | 2009-05-13 19:13:36 +0000 (Wed, 13 May 2009) | 1 line -Fix (r16242): don't use DoCommandP when the function can be called from another command ------------------------------------------------------------------------ r16298 | rubidium | 2009-05-13 17:46:41 +0000 (Wed, 13 May 2009) | 2 lines -Change: silence some pointless/unsolveable ICC warnings/remarks (multicharacter character literal potential unportable/autovectorised this loop) ------------------------------------------------------------------------ r16297 | rubidium | 2009-05-13 17:39:00 +0000 (Wed, 13 May 2009) | 2 lines -Codechange: silence more ICC warnings ------------------------------------------------------------------------ r16296 | rubidium | 2009-05-13 16:52:51 +0000 (Wed, 13 May 2009) | 2 lines -Codechange: silence some ICC warnings ------------------------------------------------------------------------ r16295 | rubidium | 2009-05-13 16:51:17 +0000 (Wed, 13 May 2009) | 2 lines -Fix: ICC defined __GNUC__ but does not define __builtin_bswap32, so fall back to the default swap method for ICC. ------------------------------------------------------------------------ r16294 | rubidium | 2009-05-13 12:57:17 +0000 (Wed, 13 May 2009) | 2 lines -Fix-ish [FS#2894]: check for a recent enough (supported) version of the XCode SDK, i.e. 2.5 or higher. Older XCode SDKs miss constants used by OpenTTD. ------------------------------------------------------------------------ r16293 | rubidium | 2009-05-13 12:54:46 +0000 (Wed, 13 May 2009) | 2 lines -Fix: more uses of # in seds, which can cause trouble according to FS#2350. ------------------------------------------------------------------------ r16292 | yexo | 2009-05-13 12:07:36 +0000 (Wed, 13 May 2009) | 1 line -Fix (r16287): autorenew settings were set to 0 when creating a new company in multiplayer ------------------------------------------------------------------------ r16291 | rubidium | 2009-05-13 10:58:41 +0000 (Wed, 13 May 2009) | 2 lines -Fix [FS#2893]: RVs were unable to find a depot when turning around (in some cases), causing 'nearest depot' orders to be occasionally lost. ------------------------------------------------------------------------ r16290 | rubidium | 2009-05-13 10:57:32 +0000 (Wed, 13 May 2009) | 2 lines -Fix [FS#2888]: unable to (re)set the desert state for watery tiles ------------------------------------------------------------------------ r16289 | smatz | 2009-05-13 10:38:46 +0000 (Wed, 13 May 2009) | 1 line -Fix (r16211): 'Display map' dropdown in scenario editor was broken ------------------------------------------------------------------------ r16288 | smatz | 2009-05-13 00:24:21 +0000 (Wed, 13 May 2009) | 1 line -Fix (r16237): crash after clicking in the ClientList window ------------------------------------------------------------------------ r16287 | yexo | 2009-05-12 22:32:22 +0000 (Tue, 12 May 2009) | 1 line -Fix: fix possible (in theory) desync related to autorenew settings ------------------------------------------------------------------------ r16286 | rubidium | 2009-05-12 22:28:18 +0000 (Tue, 12 May 2009) | 2 lines -Change: make the scrolling ticker RTL/LTR aware (scroll in different directions) ------------------------------------------------------------------------ r16285 | rubidium | 2009-05-12 20:52:12 +0000 (Tue, 12 May 2009) | 2 lines -Change: give some warnings when unsupported characters are used in the path ------------------------------------------------------------------------ r16284 | rubidium | 2009-05-12 20:01:39 +0000 (Tue, 12 May 2009) | 2 lines -Codechange: replace some magic numbers with the left/right/top/bottom of a widget ------------------------------------------------------------------------ r16283 | rubidium | 2009-05-12 19:59:33 +0000 (Tue, 12 May 2009) | 2 lines -Fix [FS#2890]: news ticker truncated too early ------------------------------------------------------------------------ r16282 | translators | 2009-05-12 17:56:06 +0000 (Tue, 12 May 2009) | 5 lines -Update: WebTranslator2 update to 2009-05-12 17:55:59 czech - 10 fixed by Hadez (10) german - 13 changed by planetmaker (13) spanish - 11 fixed by eusebio (11) ------------------------------------------------------------------------ r16281 | smatz | 2009-05-11 18:48:05 +0000 (Mon, 11 May 2009) | 1 line -Fix: silence some of compile farm warnings for target win9x ------------------------------------------------------------------------ r16280 | smatz | 2009-05-11 18:17:21 +0000 (Mon, 11 May 2009) | 2 lines -Fix (r13731): crash after using the 'Reset landscape' function -Fix: remove all waypoint signs and buoys after resetting landscape ------------------------------------------------------------------------