Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-12 | TSAGE: Extra comments for crane control scene | Paul Gilbert | |
2013-07-12 | Merge pull request #355 from lordhoto/skip-thumbnail | Johannes Schickel | |
GRAPHICS: Be more robust with broken/unsupported thumbnail headers. | |||
2013-07-12 | GRAPHICS: Be more robust with broken/unsupported thumbnail headers. | Johannes Schickel | |
This fixes future issues like bug #3614654: "ALL: ScummVM 1.5.0 can't read newer saved games". There are a few behavior changes introduced with this commit: - checkThumbnailHeader will now also report the presence of unsupported/broken (but skippable) headers. - skipThumbnail will also try to skip the data for broken/unsupported thumbnail data. - loadThumbnail will skip over broken/unsupported thumbnail data but still return 0 in this case. | |||
2013-07-12 | TUCKER: Fix palette fades | Willem Jan Palenstijn | |
This is a regression from 362b0cd5e4a71a0b2610ff8abb6aeecddc842cf0 and fixes bug #3614686. | |||
2013-07-11 | COMMON: Cleanup the MacResManager a bit | Matthew Hoops | |
2013-07-11 | TSAGE: Further fixes for R2R landing bay | Paul Gilbert | |
2013-07-10 | TSAGE: Fixes for R2R Bridge and Landing bay | Paul Gilbert | |
2013-07-11 | DC: Amend tests on serial disable/enable blocks. | D G Turner | |
These now restore the original release build logic to ensure that we don't have issues with releases. Missing something here as _debug_build doesn't seem to work as I expected... | |||
2013-07-10 | TEST: Whitespaces in test/common/ | Tobia Tesan | |
2013-07-10 | TEST: removed fixed hashes in test/common/hash-str.h | Tobia Tesan | |
The hash function does not necessarily have to conform to one specific algorithm as long as equals/differs is respected. | |||
2013-07-10 | TEST: Thorough testing for common/hash-str.h | Tobia Tesan | |
We test the various equal_to and hash functions therein. | |||
2013-07-10 | TEST: reorganize test/common/util.h | Tobia Tesan | |
Split a few test cases in two. The resulting file is now better organized. | |||
2013-07-10 | TEST: tests for common/rendermode.h | Tobia Tesan | |
tests for parseRenderMode, renderMode2GUIO and getRenderModeCode. | |||
2013-07-10 | TEST: test cases for common/util.cpp | Tobia Tesan | |
2013-07-10 | TEST: tests for common/huffman.h | Tobia Tesan | |
A few tests for the Huffman decoder. The encoding is the example from Wikipedia. This could be improved by someone more knowledgeable by generating one at runtime or using multiple encodings which would each contain one edge case. | |||
2013-07-10 | DC: Only enable serial debug output when --enable-debug is passed. | D G Turner | |
After this change, release builds will still have serial debug disabled, but debug builds will now not provide this unless --enable-debug is passed explicitly. This could have been another option or environment variable, but other embedded ports do similar things with _debug_build and this looks like the cleanest way to deal with this. | |||
2013-07-09 | Merge branch 'master' of https://github.com/scummvm/scummvm | Paul Gilbert | |
2013-07-09 | TSAGE: Implemented missing visual speaker methods for R2R | Paul Gilbert | |
2013-07-09 | NEVERHOOD: Fix incorrect sound heard when pressing the ladder button | Filippos Karapetis | |
When the ladder is down, pressing the ladder button shouldn't do anything | |||
2013-07-09 | SCUMM: Add another French Windows version of Pajama Sam 2. | Kirben | |
2013-07-09 | BUILD: Disable data path in mingw builds, since it was using a hard coded ↵ | Kirben | |
path. All external data files are stored in the Windows executable file anyway. | |||
2013-07-08 | SCI: Rewrite the song loop comments in commit 6fa668e to make more sense | Filippos Karapetis | |
2013-07-08 | SCI: Add some comments a possible TODO regarding song looping | Filippos Karapetis | |
2013-07-07 | TSAGE: Fix for crash when saving in R2R scene 300 | Paul Gilbert | |
2013-07-07 | TSAGE: Fix for visual speakers animation in R2R | Paul Gilbert | |
2013-07-07 | SCI: Fix bug #3614566 - "LSL6: ScummVM locks up at Electro-Shock room" | Filippos Karapetis | |
We now do the jumpToTick() for hold events after waiting for the delta of the current event, like we do for the signal set events. This keeps the fixes for the hold timings in QFG3, while not breaking LSL6. Many thanks to wjp for pinpointing the actual cause of the issue. | |||
2013-07-07 | CREATE_PROJECT: Add support for tests | Littleboy | |
- Added --tests command line switch - Parse test/module.mk to extract the list of test folders - Automatically run tests after a successful build | |||
2013-07-07 | CREATE_PROJECT: Add create_neverhood and create_tony to the list of tools | Littleboy | |
2013-07-07 | MORTEVIELLE: Some renaming in Mortevielle.h | Strangerke | |
2013-07-07 | CREATE_PROJECT: Add the libfaad and libmpeg2 libraries | Filippos Karapetis | |
2013-07-06 | ALL: Don't use EventRecorder at all when not compiled in | Matthew Hoops | |
2013-07-06 | MORTEVIELLE: Remove unused const | Strangerke | |
2013-07-06 | TSAGE: Minor R2R scene bugfixes | Paul Gilbert | |
2013-07-06 | TSAGE: Fix to show player on top of maze correctly in R2R scene 1200 | Paul Gilbert | |
2013-07-06 | TSAGE: Fix for player rotating north to south in R2R scene 1200 | Paul Gilbert | |
2013-07-06 | TSAGE: Fix for refreshing background and vertical sprite flipping in R2R ↵ | Paul Gilbert | |
scene 1200 | |||
2013-07-06 | SCUMM: Fix initGM() buffer overflow (CID 1032513) | Torbjörn Andersson | |
We're clearly using 12 bytes, not 11. | |||
2013-07-06 | CONFIGURE: Add missing help messages for newer feature options.. | D G Turner | |
2013-07-06 | RECORDER: Fix tests compilation. Patch by D G Turner | Eugene Sandulenko | |
2013-07-05 | BUILD: Fix Mac static build with libmpeg2 | Matthew Hoops | |
2013-07-06 | AUDIO: Further fix to ReportHandlerScummVM::printDebug in MT32 code. | D G Turner | |
2013-07-05 | TSAGE: Bugfix for disappearing player in R2R scene 1200 | Paul Gilbert | |
2013-07-05 | TSAGE: Added enumeration for crawling direction in R2R scene 1200 | Paul Gilbert | |
2013-07-05 | NEWS: Mention MPEG-2 cutscenes | Matthew Hoops | |
2013-07-05 | Merge pull request #343 from clone2727/mpeg2-avi | clone2727 | |
Add back support for sword1/2 MPEG-2 cutscenes | |||
2013-07-05 | Merge pull request #351 from bluegr/eventrec_keymapper_build_warning | Eugene Sandulenko | |
RECORDER: Don't allow the event recorder and the keymapper to be enabled simultaneously | |||
2013-07-05 | BASE: Fix --help output for --record-file-name. | Johannes Schickel | |
Formerly it claimed the command is --record-file. | |||
2013-07-05 | CREATE_PROJECT: Don't allow the keymapper and the event recorder to be ↵ | Filippos Karapetis | |
enabled simultaneously | |||
2013-07-05 | CONFIGURE: Don't allow the keymapper and the event recorder to be enabled ↵ | Filippos Karapetis | |
simultaneously | |||
2013-07-05 | Revert "COMMON: Fix crash when the keymapper and the event recorder are enabled" | Filippos Karapetis | |
This reverts commit 93987d999c61221bda3da548c8c81f5d6d906a12. |