aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-29SDL: Move createLogFile implementions to the OSystem_SDL subclasses.Johannes Schickel
svn-id: r54581
2010-11-29BACKENDS: Improve safety of Modular Backend Destructor And Close _fsFactory ↵David Turner
Memory Leak Since the modular backend implements abstract modules to be written in the future which _may_ have interdependencies, they should be set to null pointers after deletion. This allows assert(_eventManager) type lines to work, which would have detected bug #3121841 without a segfault... Also, _fsFactory should be deleted to ensure it is not leaked though this causes a group of GCC warnings and probably should be done in a different manner. svn-id: r54580
2010-11-29BACKENDS: Close Memory Leak of Mouse Surfaces in SDL Graphics BackendDavid Turner
svn-id: r54579
2010-11-29HUGO: Fix a remaining warningArnaud Boutonné
svn-id: r54578
2010-11-29HUGO: Fix compilationArnaud Boutonné
svn-id: r54577
2010-11-29HUGO: Add GMM save/load and RTLArnaud Boutonné
svn-id: r54576
2010-11-29SDL: Trying to cleanup the FORBIDDEN_SYMBOL situationMax Horn
svn-id: r54575
2010-11-29SDL: Revert r54554, and add explanatory comment (fix for bug #3121841)Max Horn
svn-id: r54574
2010-11-29BACKENDS: Include scummsys.h at top of all .cpp files, *before* any #ifdefsMax Horn
svn-id: r54573
2010-11-29SDL: Move #include <SDL.h> into a special wrapper fileMax Horn
svn-id: r54572
2010-11-29GP2X: Fix typo (and maybe compilation?)Max Horn
svn-id: r54571
2010-11-29MOHAWK: Divide GType_LIVINGBOOKSV3 into V2 and V3Matthew Hoops
svn-id: r54570
2010-11-29GP2X: More compilation fixesMax Horn
svn-id: r54569
2010-11-29MADE: Fixed bug #3090034 - "RTZ: Keyboard unresponsive", by properly ↵Filippos Karapetis
handling keyboard keys svn-id: r54568
2010-11-29COMMON: Applied patch #3121969 - "WIN32_LEAN_AND_MEAN in incorrect place"Filippos Karapetis
svn-id: r54567
2010-11-29MOHAWK: Set Maggie's Farmyard Adventure as an LB gameMatthew Hoops
The game will start, but has many problems as it uses a later version of the LB code. Also, make sure we check for filename being empty to stop an assertion in the MacCursorManager. svn-id: r54566
2010-11-29MOHAWK: Add Detection Entry For "ABC By Dr Seuss" Living Book GameDavid Turner
svn-id: r54565
2010-11-29COMMON: Add a bit more to the doxygen comment for NEResourcesMatthew Hoops
svn-id: r54564
2010-11-28M4: Remove unnecessary reference to file.hMax Horn
svn-id: r54563
2010-11-28VKEYBD: Ensure stream destructor is properly calledMax Horn
svn-id: r54562
2010-11-28COMMON: Remove unnecessary reference to file.hMax Horn
svn-id: r54561
2010-11-28GP2x: Fix silly typoMax Horn
svn-id: r54560
2010-11-28MOHAWK: Add basic Living Books support (all credit goes to fuzzie!)Matthew Hoops
v1 and v3 (both Windows and Mac) are working, v1 support is in better shape. svn-id: r54558
2010-11-28COMMON: Add support for loading NE resources and cursorsMatthew Hoops
Needed for Mohawk (and Hugo Win eventually). Based on DrMcCoy's excellent Dark Seed II code. svn-id: r54557
2010-11-28DS: Remove redundant codeMax Horn
svn-id: r54556
2010-11-28AmigaOS: Fixed compilation after the latest GSoC code merging (bug #3121350)Filippos Karapetis
svn-id: r54555
2010-11-28SDL: Reduce redundant deletes from OSystem_SDL destructorMax Horn
svn-id: r54554
2010-11-28SDL: Various more SdlEventSource related fixesMax Horn
svn-id: r54553
2010-11-28GP2X: Compilation fixMax Horn
svn-id: r54552
2010-11-28SWORD25: Fix warning about uninitialized DijkstraNode::parentIterMax Horn
svn-id: r54551
2010-11-28SWORD25: Fix warning: deref type-punned pointer breaks strict-aliasing rulesMax Horn
svn-id: r54550
2010-11-28TOON: Attempt to fix crash when Bricabrac puts on his glassesTorbjörn Andersson
This was a regression in r54223, and it's the most direct fix I can think of. The problem seems to be that sys_Cmd_Remove_Scene_Anim() clears the character's _animationInstance while character::playAnim() is waiting "for the character to be ready". My fix was to treat _animationInstance NULL as another sign that the wait is over, but maybe the real fix is for sys_Cmd_Remove_Scene_Anim() to do more than just clear the variable, e.g. stop the script or something like that? svn-id: r54549
2010-11-28i18N: Update all translation files from template file.Thierry Crozat
German has also an updated translation. svn-id: r54548
2010-11-28i18N: Add a few strings to translate in the SCUMM help dialog.Thierry Crozat
svn-id: r54547
2010-11-28i18N: Update list of source code files for translation template generationThierry Crozat
This fix update of translations following merge of GSOC-OpenGL branch. svn-id: r54546
2010-11-28OPENGL: Fix OpenGL on Mac OS XMax Horn
svn-id: r54545
2010-11-28SDL: Change refs to SdlEventManager to SdlEventSourceMax Horn
svn-id: r54544
2010-11-28WINCE: Remove obsolete openCD methodMax Horn
svn-id: r54543
2010-11-28OPENGL: Modify source files to force recompilationMax Horn
svn-id: r54542
2010-11-28DINGUX: More compilation fixesMax Horn
svn-id: r54541
2010-11-28LINUXMOTO: More compilation fixesMax Horn
svn-id: r54540
2010-11-28DINGUX: Correct compilation fix (I hope), remove dead codeMax Horn
svn-id: r54539
2010-11-28SDL: Compiled POSIX sub-backend only on unix systemsMax Horn
svn-id: r54538
2010-11-28BUILD: Set 'UNIX=1' in config.mk on unix systemsMax Horn
svn-id: r54537
2010-11-28BUILD: Add OpenGL support to configure (from branch)Max Horn
svn-id: r54536
2010-11-28BUILD: Compilation fixes for Win32 and AmigaMax Horn
svn-id: r54535
2010-11-28MAIN: Fix --gfx-mode regressionTorbjörn Andersson
We cannot check for supported graphics mode until after the backend has been initialised, or there won't be a graphics manager to ask. svn-id: r54534
2010-11-28DINGUX: Compilation fixesMax Horn
svn-id: r54533
2010-11-28LINUXMOTO: Compilation fixesMax Horn
svn-id: r54532
2010-11-28SDL: re-enable unicode after graphics initWillem Jan Palenstijn
svn-id: r54531