Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-19 | FULLPIPE: Further work on sceneHandler29() | Eugene Sandulenko | |
2014-03-18 | COMMON: Move some QuickTime Track variables into SampleDesc where they belong | Matthew Hoops | |
2014-03-18 | SCUMM: Fix bug #6009 "DC: FT/Dig - Sound disappears when VMU save fails" | D G Turner | |
This was introduced by fd3970aa52a0c7f411afdddfebad208f783281c8: Apply patch #2984508 - "GSoC: SCUMM stopped audio from playing while saving" This was not quite correct as if the save fails, the function exits without unpausing the engine, which resulted in sound and music remaining muted. This corrects the logic to unpause in all cases. | |||
2014-03-18 | FULLPIPE: Code formatting | Eugene Sandulenko | |
2014-03-18 | TSAGE: R2R - Add current scene number in debug function Cmd_ListObjects | Strangerke | |
2014-03-18 | FULLPIPE: Started scene29 implementaion | Eugene Sandulenko | |
2014-03-17 | KYRA: (LOL) - fix LoLEngine::updateCompass() | athrxx | |
2014-03-17 | KYRA: fix static resources in Russian fan translation | athrxx | |
(some messed up strings) | |||
2014-03-17 | VOYEUR: Use a nullptr instead of a 0 in a return value | Strangerke | |
2014-03-16 | FULLPIPE: Last renames in scene18and19. This completes the scene | Eugene Sandulenko | |
2014-03-16 | FULLPIPE: Yet more renames in scene18 and 19 | Eugene Sandulenko | |
2014-03-16 | FULLPIPE: More vars renamed in scene18 | Eugene Sandulenko | |
2014-03-16 | FULLPIPE: More renames in scene18and19 | Eugene Sandulenko | |
2014-03-16 | LURE: Minor change to language text strings | Paul Gilbert | |
2014-03-16 | DEVTOOLS: Fix accidental string concatenation (CID 1192645, 1192646) | Torbjörn Andersson | |
The other string concatenation looks deliberate to avoid compiler warnings, but these were almost certainly accidental. Also fixed some German inventory-related strings. Dreammaster has promised to generate a new lure.dat, since I'm not comfortable doing it myself. | |||
2014-03-16 | GOB: Calculate _totResStart even if no resources follow | Sven Hesse | |
It's also used as a base offset for TOT strings. This fixes a crash in the Amiga version of Bargon Attack. | |||
2014-03-16 | GOB: Remove the last remnants of Draw::_vgaSmallPalette | Sven Hesse | |
Draw::_vgaSmallPalette was supposed to be a 16-color VGA palette / EGA palette, but we've been using the first 16 entries of Draw::_vgaPalette for that for ages now. The only parts where we didn't were codepaths never actually taken in the gob games, so for the sake of clarity (and fixing Coverity issues), this commit removes those as well. Fixes Coverity issues 1192648 and 1192649. | |||
2014-03-16 | VOYEUR: Initialize an unitialized variable | Strangerke | |
2014-03-16 | CINE: Initialize some unitialized variables | Strangerke | |
2014-03-16 | CINE: Avoid possible string buffer overrun by using strlcpy and strlcat | Strangerke | |
2014-03-16 | TSAGE: Remove useless variable in Voice structure entry Type 0 | Strangerke | |
2014-03-16 | TSAGE: Reduce verbosity in Sound code | Strangerke | |
2014-03-16 | TSAGE: Change the type of two variables to boolean | Strangerke | |
2014-03-16 | VOYEUR: Fix some missing variable initializations | Strangerke | |
2014-03-16 | TSAGE: Prevent possible null dereferenced in sound player | Strangerke | |
2014-03-16 | FULLPIPE: Fix compiler warning | Eugene Sandulenko | |
2014-03-15 | FULLPIPE: Further work on scene18and19 renames | Eugene Sandulenko | |
2014-03-15 | ANDROID: Fix platform architecture and thus MIPS builds. | D G Turner | |
Can't use the first three characters of the ABI as "mips" is four characters. Better than this is a separate variable anyway. | |||
2014-03-15 | WINTERMUTE: Run astyle on transparent_surface.{h,cpp} mainly adding braces. | Einar Johan Trøan Sømåen | |
2014-03-15 | TUCKER: Initialize some more pointers with nullptr instead of 0 | Strangerke | |
2014-03-15 | TUCKER: Use boolean instead of integer in several places | Strangerke | |
2014-03-15 | TUCKER: Initialize some pointers with nullptr instead of 0 | Strangerke | |
2014-03-15 | TUCKER: Add a safeguard in updateCharPosition() to avoid a potential ↵ | Strangerke | |
out-of-bounds read, change the type of a variable to boolean | |||
2014-03-15 | CGE: Remove a useless structure member, reduce a variable scope | Strangerke | |
2014-03-15 | CGE: Remove a useless variable, remove some associated dead code | Strangerke | |
2014-03-15 | CGE: Reorder CGEEngine constructor | Strangerke | |
2014-03-15 | CGE: Move several variable initializations to the constructor | Strangerke | |
2014-03-15 | AVALANCHE: Add a safeguard to avoid trying to highlight a dummy (out of ↵ | Strangerke | |
bound) line | |||
2014-03-15 | VOYEUR: Move the initialization of vm to the constructor of BoltFilesState | Strangerke | |
2014-03-15 | VOYEUR: Add a check to avoid potential use of negative value as an array index | Strangerke | |
2014-03-14 | FULLPIPE: Further var renames in scene18and19 | Eugene Sandulenko | |
2014-03-14 | VOYEUR: Get rid of some magic values | Strangerke | |
2014-03-14 | VOYEUR: Hide the mouse cursor when the low battery screen is displayed | Strangerke | |
2014-03-14 | VOYEUR: Hide the mouse cursor when the low battery screen is displayed | Strangerke | |
2014-03-13 | FULLPIPE: Some renames in scenes18 and 19 | Eugene Sandulenko | |
2014-03-13 | VOYEUR: Make checkForKey() less verbose | Strangerke | |
2014-03-13 | VOYEUR: Simplify the use of _vPort | Strangerke | |
2014-03-12 | Merge pull request #447 from damien-hackadl/master | Paul Gilbert | |
LURE: Use the mouse pointer for menus on the Wii | |||
2014-03-13 | ANDROID: Modify configure script for multi architecture builds. | D G Turner | |
The host targets for Android ARM builds are changed to "android-arm" and "android-arm-v7a", from "android" and "android-v7a", and two new targets are added of "android-mips" for MIPS and "android-x86" for x86. The older "android" and "android-v7a" targets are still supported, but are deprecated. | |||
2014-03-12 | FULLPIPE: Fix warning | Eugene Sandulenko | |