Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-08 | TUCKER: Change the type of some variables to boolean | Strangerke | |
2014-03-08 | TUCKER: Initialize some uninitialized variables | Strangerke | |
2014-03-07 | TUCKER: Avoid a potential string overrun by using strlcpy instead of strcpy | Strangerke | |
2014-03-07 | TUCKER: Use a boolean for drawFlag instead of an integer | Strangerke | |
2014-03-07 | TUCKER: Some more renaming | Strangerke | |
2014-03-07 | TUCKER: Use boolean in place of integer for some members of the Sprite structure | Strangerke | |
2014-03-07 | TUCKER: Start renaming struct members to follow coding/naming conventions | Strangerke | |
2014-03-07 | TUCKER: Remove some useless modification of sprite state | Strangerke | |
2014-03-07 | TUCKER: Reduce the scope of some variables | Strangerke | |
2014-02-28 | IMAGE: Move all ImageDecoders to image/ | Matthew Hoops | |
2014-02-18 | TUCKER: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-10 | TUCKER: Fix bug #6381 - "TUCKER: In 3rd part, "Use Peg" fails..." | dergunov | |
"Use Peg" is a single-item action and these are hardcoded in the engine. The default otherwise is dual-item action "Use X on Y". | |||
2013-11-24 | BUILD: Remove need for engine.mk in each engine directory. | D G Turner | |
Each engine now only has to provide a single configure.engine file adding the engine into the configure script, which then produces the required other files automatically. | |||
2013-11-24 | BUILD: Remove need for engine-plugin.h in engines. | D G Turner | |
This is now generated automatically by the configure script from the engine directory names. | |||
2013-11-24 | BUILD: Split engines/plugins_table header down to a file per engine. | D G Turner | |
This is the third and final commit enabling fully pluggable engines. Now providing an engine folder contains a configure.engine, engine.mk and engine-plugin.h file, it will be picked up automatically by the configure script. | |||
2013-11-24 | BUILD: Split engines.mk down to a single file per engine. | D G Turner | |
This is the second part of allowing engines to be added dynamically. Each folder in engines/ which must contain a file named "engine.mk" containing the make definitions for that engine. | |||
2013-11-24 | BUILD: Split configure.engines down to a single file per engine. | D G Turner | |
This is the first part of allowing engines to be added dynamically. They are placed into a folder in engines/ which must contain a file named "configure.engine" to add the engine, which is pulled into the top level configure script automatically. | |||
2013-08-03 | TUCKER: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | TUCKER: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-07-16 | TUCKER: Amend fix for bug #3614697 - "Spanish version uncompletable..." | D G Turner | |
The mof instruction needs to return 0 or 1 to continue execution, rather than 2 which indicates to end table instruction execution. Using 0 as this is most likely correct value. | |||
2013-07-14 | TUCKER: Add support for skipping unhandled/invalid instructions. | D G Turner | |
This ensures that if any unhandled/invalid instructions are present, they are skipped, rather than locking up engine execution. This is a secondary fix for bug #3614697 - "Spanish version uncompletable at end of 2nd part" and any other future bugs of this type. | |||
2013-07-14 | TUCKER: Fix for bug #3614697 - "Spanish version uncompletable..." | D G Turner | |
This add support for the unhandled "mof" instruction present in the Spanish version. This effectively skips it as a NOP/invalid, which prevents it locking up the game at the end of the 2nd part. | |||
2013-07-12 | TUCKER: Fix palette fades | Willem Jan Palenstijn | |
This is a regression from 362b0cd5e4a71a0b2610ff8abb6aeecddc842cf0 and fixes bug #3614686. | |||
2013-05-02 | COMMON: Change kPlatformPC to kPlatformDOS | Matthew Hoops | |
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. | |||
2013-04-18 | ENGINES: Silence clang warning about unused private member _vm | Max Horn | |
This affects the Console / debugger classes of multiple engines. An alternative solution would have been to remove the unused _vm member vars. However, it seems likely that in the future, the _vm member could be useful for methods added to the console. So instead, we add a simple assert(_vm) to silence the clang warning. | |||
2012-09-13 | TUCKER: Switch to the common PCX decoder | Filippos Karapetis | |
2012-08-12 | VIDEO: Convert FlicDecoder to the new AdvancedVideoDecoder API | Matthew Hoops | |
The video no longer automatically loops (unused in-tree) and must have rewind() called manually | |||
2012-02-10 | JANITORIAL: Fix template definition whitespace | Tarek Soliman | |
2011-12-02 | TUCKER: remove duplicated logic branches in locations 48 and 66 (checked ↵ | Gregory Montoir | |
against the original) | |||
2011-11-16 | LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE) | Strangerke | |
2011-11-03 | TUCKER: Added FIXMEs for seemingly superfluous logic branches | Filippos Karapetis | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-09-08 | TUCKER: Made some static data const. | Johannes Schickel | |
2011-06-14 | DETECTOR: Pass allFiles to AdvancedMetaEngine::fallbackDetect() | Max Horn | |
Also reorder the parameters of composeFileHashMap, placing the "return value" first. | |||
2011-06-14 | DETECTOR: Merge ADParams into AdvancedMetaEngine | Max Horn | |
2011-06-10 | TUCKER: Switch to alternate AdvancedMetaEngine, avoid ADParams | Max Horn | |
2011-06-10 | ENGINES: Change incorrect use of 'target' to 'gameid' | Max Horn | |
2011-06-02 | TUCKER: Replace snprintf() usage with Common::String::format() | D G Turner | |
Safer and less portability issues. | |||
2011-06-02 | ENGINES: Change 2nd param of Engine::saveGameState to Common::String | Max Horn | |
2011-05-17 | TUCKER: Give name to RandomSource, to register it with event recorder | Max Horn | |
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-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-03-20 | TUCKER: add missing code for kSupportsLoadingDuringStartup | Gregory Montoir | |
2011-03-19 | TUCKER: Get rid of syncSoundSettings() | dhewg | |
And respect global mute settings | |||
2011-02-19 | Merge branch 'osystem-palette' of https://github.com/lordhoto/scummvm into ↵ | Johannes Schickel | |
master Conflicts: backends/platform/android/android.cpp engines/sci/graphics/screen.cpp engines/sci/graphics/transitions.cpp | |||
2011-02-19 | TUCKER: cleanup, removed unused variables | Gregory Montoir | |
2011-02-19 | TUCKER: fix truncated action string in english version | Gregory Montoir | |
2011-02-19 | TUCKER: fix #2872348 - walk bug by switching places in museum | Gregory Montoir | |
Looks like an original game glitch, prevent hard-coded sequence execution on location switch (after using map). | |||
2011-02-18 | TUCKER: fix #3106714 - Wrong animation after TV off | Gregory Montoir | |
Some negative values are prefixed by 2 minus signs, skip one before passing the string to strtol. |