log

age author description
Fri, 22 May 2009 18:56:25 +0000 rubidium (svn r16384) -Codechange: move u.effect to EffectVehicle draft
Fri, 22 May 2009 18:44:22 +0000 frosch (svn r16383) -Fix/Change: Disable multitile houses with non-zero population on additional tiles as they cause desyncs and because the specs do not allow that either. draft
Fri, 22 May 2009 18:17:20 +0000 rubidium (svn r16382) -Codechange: make GetVehicleTrackdir a member function of Vehicle. draft
Fri, 22 May 2009 17:38:53 +0000 translators (svn r16381) -Update: WebTranslator2 update to 2009-05-22 17:38:42 draft
Fri, 22 May 2009 15:39:22 +0000 smatz (svn r16380) -Codechange: rename pool.hpp to pool_type.hpp draft
Fri, 22 May 2009 15:23:47 +0000 smatz (svn r16379) -Codechange: remove GetNumTowns(), GetNumIndustries() and GetActiveCompanyCount(), use PoolItem::GetNumItems() instead draft
Fri, 22 May 2009 15:13:50 +0000 smatz (svn r16378) -Codechange: replace OldPool with simpler Pool. Compilation time, binary size and run time (with asserts disabled) should be improved draft
Fri, 22 May 2009 14:23:36 +0000 smatz (svn r16377) -Codechange: unify FOR_ALL_* macros, use separate index variable instead of var->index draft
Fri, 22 May 2009 13:53:14 +0000 smatz (svn r16376) -Codechange: Vehicle::Tick() now returns false if the vehicle was deleted draft
Fri, 22 May 2009 13:13:55 +0000 smatz (svn r16375) -Codechange: don't be afraid of deleting NULL pointers draft
Fri, 22 May 2009 12:05:28 +0000 peter1138 (svn r16374) -Fix (r11622): Valid UTF-8 sequences between 0x20 and 0xFF should be allowed as is instead of being treated as control codes. draft
Thu, 21 May 2009 22:43:25 +0000 smatz (svn r16373) -Codechange: use () instead of (void) for functions without parameters draft
Thu, 21 May 2009 18:12:28 +0000 alberth (svn r16372) -Codechange: Simplify size calculations with a few helper functions. draft
Thu, 21 May 2009 17:45:12 +0000 alberth (svn r16371) -Codechange (r16367): Properly align comments. draft
Thu, 21 May 2009 16:26:38 +0000 alberth (svn r16370) -Doc: Improvements to the nested widgets documentation, added explanation about computations, fixed typo in param description. draft
Thu, 21 May 2009 16:14:04 +0000 alberth (svn r16369) -Codechange: Renaming ComputeMinimalSize() to SetupSmallestSize(), and AssignMinimalPosition() to AssignSizePosition(), they do not compute minimal size anymore. draft
Thu, 21 May 2009 16:00:52 +0000 alberth (svn r16368) -Codechange: Only leaf widgets use min_x and min_y. draft
Thu, 21 May 2009 15:48:27 +0000 alberth (svn r16367) -Codechange: Do not use min_x and min_y for storing smallest size to allow initialization more than once. draft
Thu, 21 May 2009 13:05:48 +0000 frosch (svn r16366) -Fix: Use a valid StringID as fall-back when undefined generic newgrf strings of vehicles are requested. draft
Thu, 21 May 2009 07:29:50 +0000 peter1138 (svn r16363) -Fix: The previously selected newgrf station type was still remembered after switching to a different game without newstations enabled, preventing stations from being built. draft
Wed, 20 May 2009 17:30:30 +0000 translators (svn r16362) -Update: WebTranslator2 update to 2009-05-20 17:30:16 draft
Tue, 19 May 2009 21:25:20 +0000 rubidium (svn r16361) -Fix: pointer incremented with wrong count draft
Tue, 19 May 2009 21:20:14 +0000 rubidium (svn r16360) -Codechange: don't use _network_playas as a 'second' _local_company, but only as a storage location for the company you want to join in MP. draft
Tue, 19 May 2009 19:26:03 +0000 smatz (svn r16359) -Codechange: don't abuse company 0 when determining 'cost to clear land' in the LandInfoWindow draft
Tue, 19 May 2009 17:04:42 +0000 glx (svn r16358) -Fix (r16343): strdup doesn't like NULL draft
Tue, 19 May 2009 12:47:47 +0000 smatz (svn r16357) -Codechange: delete invalid depots in TTD savegames caused by improper SVXConverter conversions draft
Tue, 19 May 2009 08:21:37 +0000 smatz (svn r16356) -Codechange: use 'size_t' instead of 'uint' as parameter of functions in mem_func.hpp draft
Mon, 18 May 2009 19:32:16 +0000 smatz (svn r16354) -Codechange: use 'new' pool accessors and methods for Engine too draft
Mon, 18 May 2009 17:40:03 +0000 smatz (svn r16353) -Fix (r1): invalid read when OTTD savegame contains VEH_INVALID draft
Mon, 18 May 2009 16:21:28 +0000 smatz (svn r16352) -Codechange: use PoolItem::GetIfValid() instead of PoolItem::IsValidID() and PoolItem::Get() draft
Mon, 18 May 2009 12:01:13 +0000 smatz (svn r16351) -Fix (r14773): signal handler could end in endless loop draft
Mon, 18 May 2009 01:35:15 +0000 smatz (svn r16350) -Codechange: make some 'rail track is present' checks more 'secure' draft
Mon, 18 May 2009 01:26:23 +0000 smatz (svn r16349) -Codechange: rename IsPlainRailTile() to IsPlainRail(), introduce shiny new IsPlainRailTile() draft
Mon, 18 May 2009 00:33:24 +0000 smatz (svn r16348) -Fix (r16280): buoys with invalid station ID could be left in the game draft
Sun, 17 May 2009 20:38:22 +0000 rubidium (svn r16347) -Cleanup: remove some unused defines from oldpool.h. draft
Sun, 17 May 2009 20:38:05 +0000 rubidium (svn r16346) -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. draft
Sun, 17 May 2009 19:36:28 +0000 rubidium (svn r16345) -Codechange: replace the Sound(Entry) pool with a simple vector of SoundEntries. draft
Sun, 17 May 2009 19:27:50 +0000 rubidium (svn r16344) -Codechange: s/FileEntry/SoundEntry/ draft
Sun, 17 May 2009 19:14:22 +0000 frosch (svn r16343) -Fix (r16066): Invalid free on exit after changing base graphics set in game. draft
Sun, 17 May 2009 18:21:21 +0000 frosch (svn r16342) -Feature(tte): Display base graphics description in game options window. draft
Sun, 17 May 2009 17:48:05 +0000 rubidium (svn r16341) -Codechange: just use a static array instead of a never freed malloc draft
Sun, 17 May 2009 17:17:48 +0000 rubidium (svn r16340) -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. draft
Sun, 17 May 2009 17:00:30 +0000 rubidium (svn r16339) -Fix: [NewGRF] When overriding 'original sounds', only allow overriding of the 'original sounds' and not any other that is already loaded. draft
Sun, 17 May 2009 16:28:29 +0000 smatz (svn r16338) -Codechange: split loading of references to two phases draft
Sun, 17 May 2009 14:57:14 +0000 rubidium (svn r16337) -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 draft
Sun, 17 May 2009 14:32:13 +0000 rubidium (svn r16336) -Codechange: make the SpriteGroup pool more like the 'normal' pools draft
Sun, 17 May 2009 11:47:56 +0000 smatz (svn r16335) -Codechange: indenting fixes in saveload.cpp draft
Sun, 17 May 2009 11:43:51 +0000 smatz (svn r16334) -Codechange: use NeedLength enum draft
Sun, 17 May 2009 11:18:34 +0000 rubidium (svn r16333) -Cleanup: remove a bunch of unused wrapper functions. draft
Sun, 17 May 2009 11:17:53 +0000 rubidium (svn r16332) -Codechange: replace some -1 + 1 with 'nothing' or <= .. - 1 with < .. - 1 (both caused due to wrapper functions) draft
Sun, 17 May 2009 11:15:11 +0000 smatz (svn r16331) -Codechange: replace _sl.save by an enum draft
Sun, 17 May 2009 10:59:40 +0000 rubidium (svn r16330) -Fix (r16329): we were shortly visited by Mr. Kenobi. draft
Sun, 17 May 2009 10:35:13 +0000 rubidium (svn r16329) -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) draft
Sun, 17 May 2009 10:19:00 +0000 rubidium (svn r16328) -Fix: desync when removing lots of stations draft
Sun, 17 May 2009 01:00:56 +0000 smatz (svn r16327) -Codechange: replace IsValidPoolItemID(index) by PoolItem::IsValidID(index) draft
Sat, 16 May 2009 23:44:36 +0000 smatz (svn r16326) -Codechange: replace GetPoolItemPoolSize() by PoolItem::GetPoolSize() draft
Sat, 16 May 2009 23:34:14 +0000 smatz (svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index) draft
Sat, 16 May 2009 20:10:58 +0000 rubidium (svn r16323) -Fix [FS#2900]: desyncs due to the fact that depot searching with a maximum search depth simply does not work with YAPF's caches. draft
Sat, 16 May 2009 20:08:49 +0000 rubidium (svn r16322) -Fix [FS#2873]: trains could get stuck in a depot when they wanted to go to the same depot again. draft
Sat, 16 May 2009 18:58:15 +0000 rubidium (svn r16321) -Fix (r5946): in the scenario editor change the (starting) game year of the scenario, not the (starting) game year for new games/scenarios. draft