Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-09 | CRUISE: Plug another memory leak | Eugene Sandulenko | |
2016-05-07 | CRUISE: Plug memory leak | Eugene Sandulenko | |
2014-06-08 | CRUISE: Directly use assert. | Johannes Schickel | |
This fixes an ASSERT macro redefinition when compiling the Symbian port. See bug #6622 "SYMBIAN: CRUISE: warning: `ASSERT' redefined". | |||
2014-06-07 | CRUISE: Add a couple of checks to avoid the use of negative indices in ↵ | Strangerke | |
arrays. Some minor rework in the data Loader | |||
2014-06-01 | CRUISE: Reduce the scope of a variable, remove a useless increment | Strangerke | |
2014-06-01 | CRUISE: Reduce the scope of variables used in the for loops | Strangerke | |
2014-05-31 | CRUISE: Replace some more strcpy | Strangerke | |
2014-02-18 | CRUISE: Make GPL headers consistent in themselves. | Johannes Schickel | |
2013-04-26 | CRUISE: Plug memory lek. CID 1003917 | Eugene Sandulenko | |
2013-04-26 | CRUISE: Plug memory leak. CID 1003918 | Eugene Sandulenko | |
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2011-12-27 | CRUISE: Fix cppcheck warning about possible NULL pointer use. | Torbjörn Andersson | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-03-29 | JANITORIAL: Remove/comment unused vars | dhewg | |
Found by GCC 4.6's -Wunused-but-set-variable | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-10-24 | ALL: Fix various typos (patch #3093266) | Max Horn | |
svn-id: r53762 | |||
2010-03-10 | Silenced some harmless cppcheck warnings about unreachable code after a return. | Torbjörn Andersson | |
In this case, it was always a break after a return in a switch case. There are similar cases which cppcheck didn't detect, and a couple of cases where we have a break after a continue in a switch case (where the continue refers to an outer loop), but I didn't touch those. Not yet, at least. svn-id: r48218 | |||
2009-10-10 | Further memory leak fixes | Paul Gilbert | |
svn-id: r44861 | |||
2009-10-09 | Fixed all memory leaks as far as the initial title screen | Paul Gilbert | |
svn-id: r44814 | |||
2009-10-09 | Set up a basic tracing system for all memory allocations to help track down ↵ | Paul Gilbert | |
memory leaks svn-id: r44808 | |||
2009-09-24 | Reverted parts of revisions #44292, #44293, #44295 and #44296, to prevent ↵ | Filippos Karapetis | |
warnings and issues in compilers which don't support NORETURN svn-id: r44312 | |||
2009-09-24 | Changed createResFileEntry() to error out again | Filippos Karapetis | |
svn-id: r44301 | |||
2009-09-24 | CRUISE: Fixed some warnings about unreachable code | Filippos Karapetis | |
svn-id: r44293 | |||
2009-07-25 | use READ_UINT16 macro | Joost Peters | |
svn-id: r42780 | |||
2009-06-21 | Bugfixes to pre-loading and handling of resources such as sound files | Paul Gilbert | |
svn-id: r41724 | |||
2009-06-01 | Change flip[Short|Long] functions to bigEndian[Short|Long]ToNative to ↵ | Joost Peters | |
clarify that flipping only occurs on LE systems + some related cleanup. svn-id: r41107 | |||
2009-05-31 | The error() and warning() functions add ! and newline automatically. (I didn't | Torbjörn Andersson | |
look at debug() and debugC(), since I'm really bored with this now. :-) svn-id: r41061 | |||
2009-05-24 | Strip trailing whitespaces in the whole code base. | Johannes Schickel | |
svn-id: r40867 | |||
2009-05-24 | Fixed the display glitch associated with the animated handle in the engine room | Paul Gilbert | |
svn-id: r40851 | |||
2009-05-16 | Corrected mixed up parameter usage in the LoadFile method | Paul Gilbert | |
svn-id: r40617 | |||
2009-05-15 | Converted various printf statements to use debug, warning, and error. | Paul Gilbert | |
svn-id: r40588 | |||
2009-05-15 | Bugfix for loadSetEntry to ensure graphics get allocated enough space. It's ↵ | Paul Gilbert | |
not exactly the way the original did it, but should suffice to ensure grahpics have sufficient space svn-id: r40587 | |||
2009-05-15 | Fixed a memory leak in the new unified decodeGfxUnified decoder method | Paul Gilbert | |
svn-id: r40585 | |||
2009-05-13 | Fix some variable may be used uninitialized warnings. | Johannes Schickel | |
svn-id: r40528 | |||
2009-05-12 | Surely this function is supposed to return -2 when the memory allocation | Torbjörn Andersson | |
*fails*, not when it succeeds...? svn-id: r40510 | |||
2009-05-12 | When source and destination are the same, there is no need to strcpy(). In fact | Torbjörn Andersson | |
it may even be harmful when source and destination overlap. (This happens when loading savegames.) svn-id: r40508 | |||
2009-05-07 | Commit of patch submitted by Jaime Abraham Corrales Gonzalez, with minor ↵ | Paul Gilbert | |
formatting changes svn-id: r40368 | |||
2009-04-04 | Replaced all occurrences of the constant '257' with the existing constant ↵ | Paul Gilbert | |
'NUM_FILE_ENTRIES' svn-id: r39824 | |||
2009-04-01 | Replaced resource type numbers with existing constants | Paul Gilbert | |
svn-id: r39785 | |||
2009-03-22 | Bug fixes for handling 5-bit layered sprites correctly - this fixes the ↵ | Paul Gilbert | |
black boxes appearing in the first room during the fade-in svn-id: r39604 | |||
2009-03-16 | Code formatting, added further constant references, and corrected method ↵ | Paul Gilbert | |
signatures svn-id: r39445 | |||
2009-01-16 | Code formatting fixes, automatically performed by astyle | Max Horn | |
svn-id: r35870 | |||
2008-09-21 | Patch #2054467: CRUISE: 64bits fixes | Eugene Sandulenko | |
svn-id: r34622 | |||
2008-01-27 | Removed trailing spaces. | Jordi Vilalta Prat | |
svn-id: r30664 | |||
2007-12-25 | Bunch of gfx fix | Vincent Hamm | |
svn-id: r29986 | |||
2007-12-25 | Fix cell sorting | Vincent Hamm | |
Fix palette loading svn-id: r29985 | |||
2007-12-24 | Fix save/loading | Vincent Hamm | |
svn-id: r29977 | |||
2007-12-24 | Fix sprite mode 5 | Vincent Hamm | |
Fix backgroundIncrust system svn-id: r29970 | |||
2007-12-24 | -Fade in/fade out | Vincent Hamm | |
-Implement background mode 5 svn-id: r29968 |