Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-02 | JANITORIAL: Suppress some useless includes | Arnaud Boutonné | |
svn-id: r55091 | |||
2010-12-07 | DEBUG: Let GUI::Debugger::preEnter and postEnter (un)pause the engine | Max Horn | |
svn-id: r54815 | |||
2010-11-21 | CRUISE: Slight formatting fix. | Johannes Schickel | |
svn-id: r54409 | |||
2010-11-21 | CRUISE: Fix Memory Accesses Errors and Leaks Reported By Valgrind | David Turner | |
Most of these fixes are fairly simple, though the clamping of ArrayStates accesses in object.cpp _might_ cause regressions. None are obvious on basic playtest check, but the game will need a full playtest. svn-id: r54408 | |||
2010-11-21 | CRUISE: Bugfix for #3064846 - Raoul appearing in Book screen | Paul Gilbert | |
svn-id: r54405 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-17 | CRUISE: Corrected uninit read of _polyStruct in ctp.cpp:49 detected by Valgrind. | David Turner | |
This occurred during intro playback and was due to _polyStruct not being initialised to NULL during engine construction/initialisation. svn-id: r54299 | |||
2010-11-07 | LURE: Convert printf to debug/warning | Max Horn | |
Exception: The "decompiler" code still uses fopen/fprintf etc. but it is disabled by default, hence I am ignoring it for now. svn-id: r54108 | |||
2010-10-24 | ALL: Fix various typos (patch #3093266) | Max Horn | |
svn-id: r53762 | |||
2010-10-15 | CRUISE: Replace some strncpy with strlcpy. | Johannes Schickel | |
svn-id: r53495 | |||
2010-10-15 | ENGINES: Enhance namespace comments a bit | Max Horn | |
svn-id: r53484 | |||
2010-10-15 | CRUISE: Fix some code analysis warnings (bug #3087829) | Eugene Sandulenko | |
svn-id: r53472 | |||
2010-09-12 | i18n: Translate the Save and Load buttons in cruise | Thierry Crozat | |
This fix Fix bug #3064918 GUI: Save and Load button not translated in cruise svn-id: r52691 | |||
2010-08-09 | CRUISE: Eliminate global constructors | Eugene Sandulenko | |
svn-id: r51936 | |||
2010-08-07 | LOL: added english floppy version | Florian Kagerer | |
svn-id: r51834 | |||
2010-07-17 | Remove PalmOS port | Max Horn | |
svn-id: r50964 | |||
2010-07-17 | DEBUGGER: Simplify how our console debugger works / is used | Max Horn | |
* Remove _isAttached member var and isAttached method * Engines now always call the onFrame method; whether it does something is decided by the debugger class resp. its subclasses * Make detach() protected instead of private, so that subclasses can invoke it * Remove _detach_now member var (call detach() instead). * Rename _frame_countdown to _frameCountdown and properly document it. * Add more doxygen comments * Cleanup svn-id: r50963 | |||
2010-06-21 | Fixed some Cppcheck warnings. (There are plenty left, if anyone's wondering.) | Torbjörn Andersson | |
svn-id: r50120 | |||
2010-06-15 | AdvancedDetector: Add new parameter directoryGlobs. | Eugene Sandulenko | |
Without this parameter mass detection gave tons of false alarms. Use globbing for narrowing down the depth search. svn-id: r49788 | |||
2010-06-14 | Extended advancedDetector with depth parameter. | Eugene Sandulenko | |
Now AD can search nested directories. By default it is turned off, but there is new parameter to ADParameters struct. Usually value of 2 is good enough for all purposes. svn-id: r49653 | |||
2010-05-04 | Move DebugChannel related code to new header | Max Horn | |
svn-id: r48935 | |||
2010-05-04 | Move initGraphics and initCommonGFX from to new header. | Max Horn | |
These functions are only used internally be Engine subclasses, and by moving them to a separate header we can reduce indirect header dependencies. svn-id: r48934 | |||
2010-04-27 | COMMON: Move DebugChannel stuff into a new DebugMan singleton | Max Horn | |
svn-id: r48821 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-03-22 | Patch #2973290: Semicolon cleanup | Max Horn | |
svn-id: r48359 | |||
2010-03-18 | COMMON: Get rid of Common::StringList | Max Horn | |
svn-id: r48287 | |||
2010-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
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 | |||
2010-03-04 | cruise: add detection entry for Amiga English US GOLD version | Fabio Battaglia | |
svn-id: r48160 | |||
2010-02-21 | Patch for bug 2943361 by littleboy, adding full kb modifier support to all ↵ | Yotam Barnoy | |
engines + GUI and proper keypad handling svn-id: r48101 | |||
2010-02-20 | Added comment to explain pointer comparison. See r48092 and r48904. | Nicola Mettifogo | |
svn-id: r48096 | |||
2010-02-20 | Put in a warning in case there is ever too long a background resource name ↵ | Paul Gilbert | |
when saving a game svn-id: r48095 | |||
2010-02-20 | Reverted commit 48092 - The comparison is explicitly intended to detect if ↵ | Paul Gilbert | |
the background table field was passed to the method, so it won't try to do a redundant copy to itself svn-id: r48094 | |||
2010-02-20 | strncpy does not always add a terminating zero, thus we need to do that on ↵ | Johannes Schickel | |
our own. svn-id: r48093 | |||
2010-02-20 | "const char *" strings should be compared via strcmp and not via !=/==. | Johannes Schickel | |
svn-id: r48092 | |||
2010-02-19 | Increased the amount of space for storing background filenames to fix memory ↵ | Paul Gilbert | |
overflow svn-id: r48091 | |||
2010-02-13 | Cruise detection entry for english AtariST KixxXL edition | Fabio Battaglia | |
svn-id: r48045 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-12 | Rename all "Adlib" uses to "AdLib" to match the real name of the sound card ↵ | Johannes Schickel | |
/ company. Check this for reference: http://en.wikipedia.org/wiki/Ad_Lib,_Inc. http://www.crossfire-designs.de/images/articles/soundcards/adlib.jpg (note the upper left of the card) This commit does not touch "adlib" and "ADLIB" uses! Also it does not update all the SCUMM detection entries, which still use "Adlib". svn-id: r47279 | |||
2010-01-08 | Switch Mixer::playInputStream to use DisposeAfterUse::Flag | Max Horn | |
svn-id: r47182 | |||
2010-01-08 | Move DisposeAfterUse::Flag from Common to global namespace, and into a new ↵ | Max Horn | |
header common/types.h svn-id: r47180 | |||
2010-01-07 | The default keycolor for mouse pointers used to be 255. | Marcus Comstedt | |
This makes sense as a default for CLUT8 modes, but not really for anything else. As part of the gsoc2009-16bit merge, the default was changed to "all ones", with extra code in the SDL backend to truncate this to the depth of the mode. However, "all ones" (white) still isn't a very useful default for RGB modes. So rather than jumping through hoops to provide a bad default, it's better to remove the default altogether. Engines which relied on the old default of 255 have been updated to specify it explicitly. svn-id: r47118 | |||
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-24 | Added Doxygen comments for the various engine namespaces (currently mostly ↵ | Max Horn | |
without details; help filling these out is welcome) svn-id: r46128 | |||
2009-11-02 | Changed foo(void) to foo() in almost all non-backend source files | Max Horn | |
svn-id: r45616 | |||
2009-10-18 | Introduced new type Common::DisposeAfterUse::Flag | Max Horn | |
svn-id: r45233 | |||
2009-10-10 | Fixed memory leaks in savegame restoring | Paul Gilbert | |
svn-id: r44863 | |||
2009-10-10 | Game now completely starts up without memory leaks | Paul Gilbert | |
svn-id: r44862 | |||
2009-10-10 | Further memory leak fixes | Paul Gilbert | |
svn-id: r44861 | |||
2009-10-09 | Fix warning | Max Horn | |
svn-id: r44819 |