Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
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) | |||
2012-02-15 | ALL: Avoid using is* macros from ctype.h | Max Horn | |
On some systems, passing signed chars to macros like isspace() etc. lead to a runtime error. Hence, mark these macros as forbidden by default, and introduce otherwise equivalent alternatives for them. | |||
2012-02-10 | JANITORIAL: Fix template definition whitespace | Tarek Soliman | |
2012-02-02 | HUGO: Fix keyHandler (noticed by Strangerke). | Alyssa Milburn | |
2011-12-12 | HUGO: Fix warning about hidden pause() method from parent class | Max Horn | |
2011-11-30 | HUGO: Remove obsolete todo | Strangerke | |
2011-11-16 | LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE) | Strangerke | |
2011-11-06 | HUGO: Take into account wjp's and LordHoto's suggestions | Strangerke | |
2011-11-05 | HUGO: Fix a CppCheck warning reported by Tetsuo55 | Strangerke | |
2011-11-03 | HUGO: Fix warnings | Eugene Sandulenko | |
2011-10-31 | HUGO: Rename Sequence Index Direction Enums. | D G Turner | |
This is to avoid any further collisions with system defines. | |||
2011-10-31 | HUGO: Change _UP to __UP to avoid definition conflict on some backends. | Matt Lewandowsky | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-09-08 | HUGO: Improvements to SoundHandler::pcspkr_player(). | Alyssa Milburn | |
Better comments, improved timing and square waves. | |||
2011-09-08 | HUGO: Made some static data const. | Johannes Schickel | |
2011-09-08 | JANITORIAL: Fix some formatting glitches in gob, hugo and toon | Strangerke | |
2011-08-24 | HUGO: Coding style fixes. | Alyssa Milburn | |
2011-08-07 | GRAPHICS: Simplify the interface of Graphics::loadThumbnail(). | Christoph Mallon | |
Now it returns the Surface, so the caller does not need to create one and pass it. | |||
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-06-25 | HUGO: Fix incorrect usage of sizeof | Willem Jan Palenstijn | |
Thanks to salty-horse for the report. The new sizes are the ones that were replaced by sizeof in 399b59a583b. | |||
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-18 | HUGO: Replace vsprintf by Common::String::vformat | Max Horn | |
2011-06-10 | HUGO: Switch to alternate AdvancedMetaEngine, avoid ADParams | Max Horn | |
2011-06-10 | ENGINES: Change incorrect use of 'target' to 'gameid' | Max Horn | |
2011-06-02 | ENGINES: Change 2nd param of Engine::saveGameState to Common::String | Max Horn | |
2011-05-25 | HUGO: Fix comments | strangerke | |
2011-05-25 | HUGO: Add 3 object related functions to the console | strangerke | |
2011-05-25 | HUGO: Add boundaries() to the console. God mode no longer shows boundaries, ↵ | strangerke | |
as in the original | |||
2011-05-25 | HUGO: Cosmetic modification, for consistency | strangerke | |
2011-05-25 | HUGO: Add listscreens() and gotoscreen() to console | strangerke | |
2011-05-25 | ALL: initialise -> initialize | Matthew Hoops | |
2011-05-17 | COMMON: Registers RandomSources in constructor with the event recorder | Max Horn | |
This also removes the dependency of engines on the event recorder header and API, and will make it easier to RandomSources that are not properly registered. | |||
2011-05-16 | ENGINES: Unify engine names | Thierry Crozat | |
This unifies the engine names in MetaEngine::getName() and the credits. In particular drop "Engine" or "engine" from the names when it was present and use expanded names in credits when the MetaEngine uses it (e.g. "Beneath a Steel Sky" instead of "BASS"). | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-01 | Merge pull request #16 "Add a PixelFormat to Graphics::Surface.". | Johannes Schickel | |
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp | |||
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-26 | HUGO: Add workaround for bug #3292389: Penelope splits up when dying in chasm | strangerke | |
2011-04-25 | HUGO: Fix bug #3292382 : "Whodunit? & Jungle of Doom set music to off by itself" | strangerke | |
2011-04-25 | HUGO: Fix bug #3292400 : Overlapping help windows when using the menu bar | strangerke | |
2011-04-25 | HUGO: Add a black background behind the score line. This should fix bug ↵ | strangerke | |
#3291959. | |||
2011-04-24 | HUGO: Fix BE issue in getSound(). Thanks wjp for finding that issue. | strangerke | |
2011-04-24 | HUGO: Hopefully fix the valgrind error reported by Digitall in bug #3292391 | strangerke | |
2011-04-23 | HUGO: Fix Endianness issue in H2 and H3 Dos | strangerke | |
2011-04-20 | HUGO: Silent several warnings reported by littleboy | strangerke | |
2011-04-17 | ALL/GRAPHICS: Remove Surface::bytesPerPixel. | Johannes Schickel | |
2011-04-17 | HUGO: Prefer Surface::format over Surface::bytesPerPixel. | Johannes Schickel | |