Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-29 | JANITORIAL: Remove/comment unused vars | dhewg | |
Found by GCC 4.6's -Wunused-but-set-variable | |||
2010-03-18 | COMMON: Get rid of Common::StringList | Max Horn | |
svn-id: r48287 | |||
2010-01-03 | Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is null | Torbjörn Andersson | |
before freeing it, which isn't necessary. svn-id: r46941 | |||
2009-11-02 | Changed foo(void) to foo() in almost all non-backend source files | Max Horn | |
svn-id: r45616 | |||
2009-07-03 | Added more GCC_PRINTF attributes, and fixed resulting warnings in format strings | Max Horn | |
svn-id: r42054 | |||
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-19 | COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are ↵ | Max Horn | |
deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) svn-id: r40725 | |||
2009-03-06 | cleanup | Joost Peters | |
svn-id: r39147 | |||
2009-02-13 | Formatting changes / consistency | Joost Peters | |
svn-id: r36304 | |||
2009-01-30 | Avoid using g_engine if possible | Max Horn | |
svn-id: r36149 | |||
2008-09-30 | Renamed Engine::quit to Engine::shouldQuit (previously, it was easily ↵ | Max Horn | |
confused with Engine::quitGame); also cleaned up engine.h a bit svn-id: r34700 | |||
2008-08-13 | Fixed some memory leaks | Christopher Page | |
svn-id: r33846 | |||
2008-08-04 | Merged revisions ↵ | Christopher Page | |
33188-33189,33191-33193,33196,33198,33202-33203,33206,33210,33212,33218-33220,33222,33224-33226,33229-33243,33246,33248-33250,33252,33258-33261,33263,33266,33270,33272-33283,33285,33287-33290,33295-33298,33321,33325-33330,33332-33335,33337-33340,33342,33345,33347,33349-33350,33352-33357,33359-33367,33369-33371,33373,33375-33377,33379-33380,33383-33385,33387-33389,33392-33394,33400-33402,33404-33405,33407-33410,33412-33416,33418-33419,33425-33427,33432,33436-33438,33444,33446,33452-33453,33455-33459,33463-33464,33466-33471,33473-33474,33478,33490,33492,33495-33496,33509-33512,33518-33519,33522-33527,33529-33530,33537,33541,33544,33546,33550,33552-33554,33556,33558,33561-33562,33565,33568,33570,33574,33576,33578-33581,33584-33587,33590,33596,33604-33611,33614-33615,33617-33618,33620-33621 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r33624 | |||
2008-08-03 | Fixed bug that prevented upper-case letters from being used in savegame names. | Torbjörn Andersson | |
Apparently, strchr(..., 0) will find the string terminator - at least for me - and when that's added to the name, it will terminate the string. svn-id: r33565 | |||
2008-07-13 | SKY works with the new GMM implementation, also updated gui/newgui.cpp and ↵ | Christopher Page | |
prevented pushEvent from pushing more than one EVENT_QUIT into the artificialEventQueue svn-id: r33041 | |||
2008-06-25 | Scumm and sky now use the new _quit flag | Christopher Page | |
svn-id: r32775 | |||
2008-02-27 | Add support for --list-saves to the sky engine | Max Horn | |
svn-id: r30987 | |||
2008-02-27 | Modified the BASS save/load code to use a StringList for storing the save ↵ | Max Horn | |
state titles (simplified the code, removed some cruft) svn-id: r30986 | |||
2008-02-27 | Simplified Control::handleKeyPress and fixed a long-standing bug in the ↵ | Max Horn | |
verification of the save name svn-id: r30981 | |||
2008-01-28 | Fixed the spaces before tabs. | Jordi Vilalta Prat | |
svn-id: r30667 | |||
2007-12-28 | Patch #1857121: Refactoring of the getSavePath method | Eugene Sandulenko | |
svn-id: r30032 | |||
2007-09-19 | Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵ | Nicola Mettifogo | |
been updated. svn-id: r28966 | |||
2007-06-22 | Converted BASS to use Common::KeyState | Max Horn | |
svn-id: r27635 | |||
2007-05-30 | Updated legal headers in source files, based on what Pidgin (the IM client ↵ | Max Horn | |
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024 | |||
2007-03-22 | Fixed long-standing font bug. We were using the control panel font for LINC | Torbjörn Andersson | |
space and terminals, and the LINC font for the control panel. Since these fonts contain different sets of characters, this would often cause the wrong character to be displayed, particularly in non-English languages. This also explains why we had to use the "wrong" font for the control panel recently. The functions to patch the LINC character set (actually the control character set) should no longer be needed, and have been removed. Should fix bug #1669564. svn-id: r26275 | |||
2007-03-18 | Fixed control panel sliders. | Torbjörn Andersson | |
svn-id: r26209 | |||
2007-03-18 | Applied eriktorbjorn's patch for bug #1657466: | Robert Göffringmann | |
"BASS: wrong music slider behavior" and did some cleanup. svn-id: r26208 | |||
2007-03-17 | Moved Event/EventType/keyboard enum from common/system.h (part of class ↵ | Max Horn | |
OSystem) to common/events.h (part of namespace Common). Porters may have to make minor changes to their backends to get them to compile again svn-id: r26180 | |||
2007-03-17 | SKY: Changed Control class to use event manager for mouse coord tracking, ↵ | Max Horn | |
and also made it respect the SF_MOUSE_LOCKED flag svn-id: r26177 | |||
2007-03-17 | Force all code to use EventManager::pollEvent instead of OSystem::pollEvent | Max Horn | |
svn-id: r26156 | |||
2007-03-14 | Fixed bug #1507835 (BASS: Control panel text differences from the original) | Max Horn | |
svn-id: r26136 | |||
2007-03-14 | Fix for bug #1656880 (BASS: mouse initialized wrong in control panel) | Max Horn | |
svn-id: r26130 | |||
2007-02-17 | Added finalize() method to Common::OutSaveFile (which by default just ↵ | Max Horn | |
flushes the stream), changed engines to call that before deleting OutSaveFile instances (instead of just flushing) svn-id: r25660 | |||
2007-02-10 | Patch #1656801 (BASS: various control panel fixes), which fixes bug #1548779 ↵ | Max Horn | |
(BASS: Control panel inconsistency for FX/Music button texts) svn-id: r25473 | |||
2006-07-14 | More whitespace changes. | Torbjörn Andersson | |
svn-id: r23496 | |||
2006-06-21 | Initialise the control panel's _mouseX / _mouseY. Fixes a Valgrind warning. | Torbjörn Andersson | |
svn-id: r23212 | |||
2006-04-26 | add missing comma for portuguese quit text, remove stray comma after last ↵ | Joost Peters | |
string. svn-id: r22187 | |||
2006-04-16 | Fix for bug #1471383: Instead of overloading ConfigManager::set, we now have ↵ | Max Horn | |
new setInt and setBool methods (matching getInt/getBool), which avoids strange quirks & bugs caused by (char *) being implicitly cast to int (ouch) svn-id: r21951 | |||
2006-04-12 | Fixing mismatch between format strings and data on some systems | Max Horn | |
svn-id: r21828 | |||
2006-04-12 | sizeof(void *) != sizeof(int) for a large number of systems. | Jonathan Gray | |
Fix a lot of debug/error statements that were using %d/%x for the result of pointer arithmetic. As C++ apparently has no format string for ptrdiff_t use %lu/%lx as appropriate. svn-id: r21824 | |||
2006-03-29 | Do not #include endian.h in scummsys.h (cuts down deps on endian.h from ~400 ↵ | Max Horn | |
to ~250). Many greetings to eriktorbjorn, and have fun recompiling. svn-id: r21500 | |||
2006-03-26 | Added support for mouse wheel scrolling in save/restore dialog. | Torbjörn Andersson | |
svn-id: r21459 | |||
2006-02-11 | Moved engines to the new engines/ directory | Max Horn | |
svn-id: r20582 |