Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2011-02-18 | TUCKER: cleanup | Gregory Montoir | |
2011-02-18 | TUCKER: fix #3106766 - Bubbles in Plugs Shop too heavy | Gregory Montoir | |
2011-02-18 | TUCKER: fix #3106542 - Ego drawn behind background | Gregory Montoir | |
Looks like an original game glitch, the location 14 background bitmap contains some pixels in range [0xE0-0xF8] which is usually reserved ; add workaround. | |||
2011-02-18 | TUCKER: fix #3106536 - Punk stuck (moving in background) | Gregory Montoir | |
2011-02-18 | TUCKER: fix #3106520 - Prison water drop leaves a line | Gregory Montoir | |
2011-02-18 | TUCKER: fix #2628056 - Text Dialogue is out of sync | Gregory Montoir | |
always synchronize text with speech sound. Note, some subtitles present in the datafiles are inconsistent (written text different from spoken). | |||
2011-02-18 | TUCKER: fix #2627967 - Slow Walking | Gregory Montoir | |
The waitForTimer calls in fade*Palette are actually duplicated ; mainLoop already handles timing. | |||
2011-02-14 | TUCKER: Adapt to setPalette RGBA->RGB change. | Johannes Schickel | |
This change has not been tested, since I do not own copy of Tucker. | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2011-01-23 | VIDEO: Move video classes to Video:: namespace | Eugene Sandulenko | |
svn-id: r55479 | |||
2011-01-23 | GRAPHICS: Move graphics/video/ to video/. Step 1/2 | Eugene Sandulenko | |
svn-id: r55473 | |||
2011-01-10 | SOUND: Get rid of unused forward declarations in mixer.h. | Johannes Schickel | |
svn-id: r55197 | |||
2010-12-16 | VIDEO: Make VideoDecoder::decodeNextFrame() return a const Surface pointer | Matthew Hoops | |
svn-id: r54927 | |||
2010-12-07 | DEBUG: Let GUI::Debugger::preEnter and postEnter (un)pause the engine | Max Horn | |
svn-id: r54815 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-08 | TUCKER: Added basic debugging console to engine | David Turner | |
Tucker does not currently use Debug Channels, but this does provide a base for adding them along with any other debugging commands. svn-id: r54141 | |||
2010-11-07 | TUCKER: Add GUIO_NOLAUNCHLOAD to the detection flags. | Johannes Schickel | |
svn-id: r54126 | |||
2010-11-07 | ENGINES: Unify code layout of all ADParams instances | Max Horn | |
svn-id: r54105 | |||
2010-10-15 | ENGINES: Enhance namespace comments a bit | Max Horn | |
svn-id: r53484 | |||
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-06-06 | add missing decodeNextAnimationFrame in default case for sequence 9 | Gregory Montoir | |
svn-id: r49458 | |||
2010-06-06 | fix sequence frame numbering (decrement if getCurFrame now returns the last ↵ | Gregory Montoir | |
decoded frame number) svn-id: r49455 | |||
2010-06-06 | use palette image during sequence 3 scrolling | Gregory Montoir | |
svn-id: r49452 | |||
2010-05-18 | Committing the rest of the VideoDecoder Rewrite from patch #2963496. | Matthew Hoops | |
svn-id: r49079 | |||
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 |