aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2017-11-07XEEN: Fix FX calls in multiAttackPaul Gilbert
2017-11-04TITANIC: Remove testing flag from German versionPaul Gilbert
2017-11-02MOHAWK: RIVEN: Remove the testing flagBastien Bouclet
2017-10-31SCUMM: Prevent false detection of Steam gamesBen Castricum
2017-10-29XEEN: Enable starting game from startup menuPaul Gilbert
2017-10-29SCI: Fix UB in SegManager memcpy/strcpy operationsColin Snover
Passing overlapping buffers to C standard library memcpy, strcpy, and strncpy is undefined behavior. In SSCI these operations would perform a forward copy, and most stdlib implementations do the same, but at least newer Linux glibc on x86 copies bytes in reverse, so just using the standard library on this platform results in broken output. Because SSCI used a blind forward copy instead of memmove for overlapping copy operations, this patch implements an explicit forward copy to ensure that overlapping copies continue to operate the same as in SSCI. This fixes the Island of Dr. Brain v1.1 flamingo puzzle (script 185, flamingos::init, localCall 4c3) on platforms that do not perform forward copy in memcpy/strcpy/strncpy. Thanks to @moralrecordings for research on this bug and an initial patch using memmove. Closes gh-1034.
2017-10-29TESTBED: Only build cloud tests if libcurl is available tooWillem Jan Palenstijn
This matches the module.mk checks for backends/cloud
2017-10-28Merge pull request #1046 from digitall/saga_ite_frenchThierry Crozat
SAGA: Add Code to Support French Fan Translation.
2017-10-28SAGA: Replace Remaining French Accented Characters with Escape Codes.D G Turner
2017-10-28SAGA: Add Define for French Language for clarity.D G Turner
2017-10-27TITANIC: Hopefully fix AmigaOS compilationPaul Gilbert
2017-10-27SAGA: Correct Tenses in French Fan Translation of ITE.D G Turner
These changes were suggested by bgK.
2017-10-26SAGA: Add Code to Support French Fan Translation.D G Turner
This code was supplied by Darknior (hugues.fabien@gmail.com).
2017-10-25Merge pull request #1035 from bgK/require-64bits-integersBastien Bouclet
BUILD: Require 64bits integers
2017-10-25MOHAWK: MYST: Add detection for a Russian versionBastien Bouclet
2017-10-21SCI: Allow lofsa string printing in disasm for all SCI versionsWillem Jan Palenstijn
2017-10-21SCI: Fix offsets in disasm for multi-param opcodesWillem Jan Palenstijn
This code was assuming that retval points to the start of the next instruction, which is only true if the current parameter is the last one. This fixes op_call printing.
2017-10-16TITANIC: Remove redundant room check in CEarSweetBowlPaul Gilbert
2017-10-16SCI32: Fix cursor color when quitting for phant1David Fioramonti
When quitting the game at the main menu and hitting no or quitting the game while playing the cursor color over the buttons will be tan the first time rather than red. This fix makes it so it will be red. This was done by removing a check in HotSpot::doit() which checks the global193 value. Removing this check fixes the problem. Fixes Trac#9977. Thanks snover and wjp for your help.
2017-10-15TITANIC: Add missing strings for Floor & Room # to titanic.datPaul Gilbert
2017-10-15TITANIC: Fix crash exiting game when music room music is activePaul Gilbert
2017-10-15TITANIC: Music room handler field renames & better anim sync to musicPaul Gilbert
2017-10-15SCI32: Tell OSystem to show/hide cursors as appropriateColin Snover
This is needed so that the system cursor can be appropriately hidden outside the game's draw area, to match the normal behaviour of ScummVM.
2017-10-15TITANIC: Fix use after free and remove IFDEF code from mouse cursorsPaul Gilbert
2017-10-15TITANIC: Simplify cursors to build up as RGBA during loadingPaul Gilbert
2017-10-14TITANIC: Remove accidentally committed cutscene slowdownPaul Gilbert
2017-10-14TITANIC: Stop final piano note of music room music getting cut offPaul Gilbert
2017-10-14TITANIC: Properly flag audio buffer as finished when song is donePaul Gilbert
2017-10-13TITANIC: Fix rotating on Top of Well balconyPaul Gilbert
2017-10-13TITANIC: Show busy cursor when SuccUBus sending or receivingPaul Gilbert
2017-10-13TITANIC: Workaround for wrong ambient music on loadPaul Gilbert
2017-10-13TITANIC: Renamed GlobalSound methods to AmbientSoundPaul Gilbert
2017-10-13TITANIC: Cleanup of auto music player classes and messagesPaul Gilbert
2017-10-12TITANIC: Play Pellerator sound only when moving to a new destinationPaul Gilbert
2017-10-12TITANIC: DE: Fix showing accented characters in Chat tabPaul Gilbert
2017-10-12TITANIC: DE: Fix saying 'ja' to Deskbot during checkinPaul Gilbert
2017-10-10TITANIC: Fix buffer overflow in parser searchAndReplacePaul Gilbert
2017-10-10TITANIC: Show SGT furniture in stateroom even after upgradingPaul Gilbert
2017-10-10TITANIC: Only allow moving to SGT TV in assigned roomPaul Gilbert
2017-10-10TITANIC: Fix talking to the Maitre DPaul Gilbert
2017-10-09TITANIC: DE: Fix bomb passwordPaul Gilbert
2017-10-09TITANIC: Fix Coverity warningsPaul Gilbert
2017-10-08TITANIC: DE: Fix going to bottom of service elevatorPaul Gilbert
2017-10-08SCI32: Fix crash restoring save from endgame of RAMAColin Snover
Fixes Trac#10263.
2017-10-09SCI: Add QfG4 script patch to fix sliding down slope bug #9801Martin Kiewitz
It's quite difficult to patch. I hope this finally solved it.
2017-10-08SCI: Crazy Nick's Larry workaround bug #10184Martin Kiewitz
Added this already through last commit by accident Was supposed to get added by this. Workaround for reading uninitialized temp game bug.
2017-10-08SCI: Restrict some workarounds to certain tempsMartin Kiewitz
Also add a bit more documentation / Fix some documentation
2017-10-08TITANIC: Turn off testing for English, turn it on for GermanPaul Gilbert
2017-10-08TITANIA: DE: Fixes for Titania's wakeup speechPaul Gilbert
2017-10-08TITANIC: DE: Syntax fixesPaul Gilbert