src/fios.cpp
Fri, 05 Dec 2008 18:02:04 +0000 rubidium (svn r14656) -Change: replace instances of x & S_IFREG with S_ISREG(x) as S_IFREG can be 0 on some platforms.
Sun, 02 Nov 2008 11:20:15 +0000 skidd13 (svn r14555) -Codechange: replace ttd_strlcat and ttd_strlcpy with strecat and strecpy where direct conversion is possible
Tue, 28 Oct 2008 16:04:41 +0000 rubidium (svn r14542) -Codechange: replace some sprintf with s[en]printf to make sure they will not overflow their buffers.
Sun, 31 Aug 2008 10:50:05 +0000 rubidium (svn r14199) -Codechange: split fileio.h into fileio_type.h and fileio_func.h so not everything that includes saveload.h needs to include everything else too.
Mon, 28 Jul 2008 15:31:11 +0000 smatz (svn r13859) -Fix: loading of TTD(Patch) savegames from the command line didn't work
Mon, 02 Jun 2008 14:19:27 +0000 skidd13 (svn r13359) -Codechange: convert _fios_items to a SmallVector
Wed, 07 May 2008 21:51:13 +0000 glx (svn r13000) -Fix (r12991): broken win9x compilation
Wed, 07 May 2008 14:12:20 +0000 glx (svn r12991) -Codechange: removed some unneeded includes
Wed, 23 Apr 2008 13:36:52 +0000 glx (svn r12850) -Fix (r12848): compilation was broken for some platforms
Wed, 23 Apr 2008 12:03:47 +0000 peter1138 (svn r12848) -Cleanup/Codechange: Use correct variable types, don't prefix with _ for non-globals, and use implicit enum numbering.
Wed, 23 Apr 2008 11:57:58 +0000 peter1138 (svn r12847) -Cleanup: Identing and variable scope
Tue, 22 Jan 2008 15:47:40 +0000 glx (svn r11945) -Fix: FileExists() failed for non latin paths (win32)
Sun, 13 Jan 2008 01:21:35 +0000 rubidium (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
Mon, 07 Jan 2008 14:23:25 +0000 rubidium (svn r11777) -Codechange: split the string header and make do not include it when it's not necessary.
Fri, 28 Dec 2007 03:14:55 +0000 belugas (svn r11713) -Codechange: Move some declarations and definitions in a more logical disposition
Tue, 25 Dec 2007 11:26:07 +0000 rubidium (svn r11692) -Codechange: move some functions from 'functions.h' to a more logical place and remove about 50% of the includes of 'functions.h'
Tue, 25 Dec 2007 09:48:53 +0000 rubidium (svn r11691) -Codechange: move+rename helpers.hpp and only include it when it is really needed.
Sun, 18 Nov 2007 18:28:32 +0000 rubidium (svn r11464) -Fix: some issue that made OpenTTD on MorphOS seriously unplayable.
Sat, 04 Aug 2007 12:53:41 +0000 truelight (svn r10781) -Fix: ported more pieces to WinCE, so it compiles a bit more
Tue, 03 Jul 2007 11:31:38 +0000 peter1138 (svn r10412) -Codechange: Remove unnecessary inclusion of hal.h in various files (and add one)
Sun, 17 Jun 2007 15:48:57 +0000 rubidium (svn r10182) -Codechange: rewrite most part of the file loading/searching to be more flexible.
Thu, 31 May 2007 14:29:19 +0000 rubidium (svn r9998) -Fix (r9990): possible null pointer dereferences on MorphOS.
Wed, 30 May 2007 18:24:54 +0000 rubidium (svn r9990) -Fix: MorphOS and AmigaOS do not like "//" in filenames as that means the same as "/../" in means in Unix.
Tue, 17 Apr 2007 20:23:13 +0000 belugas (svn r9662) -Documentation: Doxygen corrections and @file omissions
Wed, 07 Mar 2007 18:58:28 +0000 Darkvater (svn r9055) -Codechange: Change windows unicode handling and allow a pure non-unicode build to function. Win9x binaries will be possible with mingw/nightly system.
Wed, 07 Mar 2007 11:47:46 +0000 rubidium (svn r9050) -Codechange: Foo(void) -> Foo()
Tue, 06 Mar 2007 22:37:04 +0000 rubidium (svn r9043) -Fix [FS#652]: the personal (.openttd) directories were hidden in the load/save directory listings (stepancheg).
Thu, 01 Mar 2007 01:24:44 +0000 belugas (svn r8950) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
Fri, 23 Feb 2007 12:56:10 +0000 Darkvater (svn r8860) -Cleanup: some style changes, proper #endif comments, variable initialisation, WINCE ifdef and a vsprintf to vsnprintf change.
Fri, 23 Feb 2007 01:48:53 +0000 belugas (svn r8853) -Cleanup: doxygen changes. Correct forgotten c files to cpp files with the @file tag as well as a few general comments style
Tue, 20 Feb 2007 09:46:10 +0000 Darkvater (svn r8823) -Fix (r8821): wrapping opendir to ottd-specific function failed on non-windows because this wrapper was only active for win32 (thx Rubidium)
Tue, 20 Feb 2007 00:09:23 +0000 Darkvater (svn r8821) -Regression: Unable to browse directories on *nix if the filesystem is not in UTF-8 charset and special characters are used. The string passed to opendir() which is UTF-8 was not parsed back to the filesystem format. Use a wrapper called ttd_opendir() instead of redefining opendir itself.
Sat, 17 Feb 2007 16:41:56 +0000 Darkvater (svn r8784) -Regression (r7274 most likely): Unable to load TTDP (on *NIX) games because the static buffer used for name conversion is overwritten in the callback function.
Sun, 21 Jan 2007 14:21:31 +0000 truelight (svn r8308) [WinCE] -Revert r5764: in case of WinCE, use the code for FileExists as it was in pre-r5764 for Win32 (tnx Darkvater)
Thu, 11 Jan 2007 17:29:39 +0000 KUDr (svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
Wed, 10 Jan 2007 18:56:51 +0000 rubidium (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
Wed, 10 Jan 2007 18:12:09 +0000 KUDr (svn r8033) [cpp] - Prepare for merge from branches/cpp (all .c files renamed to .cpp)