aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-26DIRECTOR: Skip header in VWLB resource for D4+Eugene Sandulenko
For some reason the pointer in D4 movies points to the header instead of data. Perhaps there is a flag which indicates that. In the meanwhile, adding a hack to skip it so we could proceed with development.
2016-10-26DIRECTOR: Renamed resource/archive files to better reflect realityEugene Sandulenko
2016-10-26DIRECTOR: Skipping useless movie scanning.Eugene Sandulenko
We can easily rely on the FS path resolving.
2016-10-25TITANIC: Further work on mouse cursor enablement logicPaul Gilbert
2016-10-25SCI: Implement SSCI bug in hexadecimal escape sequencesColin Snover
In SSCI, strchr is called against a hex string with a duplicate 0 ("01234567890abcdef") to determine the decimal value of hex digits, which means the values A-F are incorrectly interpreted as 11-16 instead of 10-15. All versions of SSCI with support for hexadecimal escape sequences in messages (starting somewhere around Feb 1993) are buggy. The native save/load dialog of SCI32 relies on this defect to render the up and down arrows of the game selector. Fixes Trac#9582.
2016-10-26FULLPIPE: Fix if statement. Thanks to PVS-StudioEugene Sandulenko
2016-10-25TITANIC: Fix dragging PhotographPaul Gilbert
2016-10-25TITANIC: Fix setting active NPCPaul Gilbert
2016-10-25TITANIC: Keep cursor disabled for entire Doorbot introPaul Gilbert
2016-10-25TITANIC: Implement hide counting for mouse cursor hide/showPaul Gilbert
2016-10-25KYRA: (LOL) Fix buffer overflow in _lastOverridePalFileWillem Jan Palenstijn
It was storing filenames of length 12 in a char[12] buffer. Fixes bug #9627.
2016-10-25Merge pull request #854 from lubomyr/masterEugene Sandulenko
ANDROIDSDL: Changed logic for back button & getting sdcard storage location
2016-10-24TITANIC: Add conversation text to the PETPaul Gilbert
2016-10-25AGOS: Add missing subtitle delay for Simon the Sorcerer 1 (Hebrew DOS CD).Kirben
2016-10-24BLADERUNNER: Typo in SetEffects::setFadeColor (CID 1364307)Thomas Fach-Pedersen
2016-10-24BLADERUNNER: Fix null pointer dereference (Actually CID 1364205)Thomas Fach-Pedersen
Previous fix for CID 1364205 was actually for CID 1364306.
2016-10-24BLADERUNNER: Fix potential buffer overrun (CID 1364276)Thomas Fach-Pedersen
2016-10-24BLADERUNNER: Fix out-of-bounds write (CID 1364262)Thomas Fach-Pedersen
2016-10-24BLADERUNNER: Fix out-of-bounds access in voiceover actor (multiple CIDs)Thomas Fach-Pedersen
CID 1364219 CID 1364223
2016-10-24BLADERUNNER: Fix out-of-bounds read (CID 1364207)Thomas Fach-Pedersen
2016-10-24BLADERUNNER: Fix null pointer dereference (CID 1364205)Thomas Fach-Pedersen
2016-10-24BLADERUNNER: Fix resource leak (CID 1364202)Thomas Fach-Pedersen
2016-10-24DIRECTOR: Load shared cast only when it existsEugene Sandulenko
2016-10-24DIRECTOR: Run start movie specified in the command lineEugene Sandulenko
2016-10-24DIRECTOR: Added D4 generic targetEugene Sandulenko
2016-10-24BASE: Add command line for specifyong Director start movieEugene Sandulenko
2016-10-23TITANIC: Fix freeze in Doorbot conversationPaul Gilbert
2016-10-23TITANIC: Fix showing multiple NPC animations as Doorbot speaksPaul Gilbert
2016-10-23TITANIC: Match the CWaveFile duration method closer to originalPaul Gilbert
2016-10-23TITANIC: Start Doorbot animating in closeup conversationPaul Gilbert
2016-10-23TITANIC: Fix resetting NPC flags when Doorbot finishes speakingPaul Gilbert
2016-10-23MOHAWK: Support for the Riven JP CD structureEugene Sandulenko
2016-10-23MOHAWK: Fix Riven JP platformEugene Sandulenko
2016-10-23MOHAWK: Add detection for Japanese RivenEugene Sandulenko
2016-10-23ANDROIDSDL: default storage-sdcard directory location getting direct from ↵lubomyr
libSDL wrapper
2016-10-23ANDROIDSDL: back button re-mapped to F13 keycode. F13 keycode assigned to ↵lubomyr
call scummvm in-game menu. CONTROL key now can be uses with games
2016-10-22GUI: Fix possible access to free'ed memory or double deletion in tab widgetThierry Crozat
The issue could occur when adding or removing widgets to a tab, and then not switching to a different tab before the destructor or reflowLayout() were called. In such a case the firstWidget of the current widget in the _tabs list could be out of date. Accessing this first widget from the destructor or from reflowLayout() could then cause a crash, or random issues caused to access to free'ed memory. In theory this could also lead to a memory leak, although I don't think this could occur in our current code. Usually we add several tabs to a TabWidget and then switch back to the first tab after building all the tabs. So in such a case the issue would not occur. But because we are deleting and reconstructing the clear buttons for the MIDI and Path tabs of the options dialog from reflowLayout(), if the current tab is the Path tab, it would be kept as active tab after adding and removing widget to it and the issue would occur. This fixes bug #9618.
2016-10-22GUI: Fix incorrect initialisation of some tab Ids in OptionsDialogThierry Crozat
A value of 0 is valid for tab ids, so the correct initialisation at this stage is -1. However only one constructor properly initialized all the tab ids to -1 in its initialisation list, but it was then changed to 0 in init(). I have added the missing ones to the other constructors and removed the incorrect ones in init(). But maybe all tab ids should be initialised in init() rather than in the constructors initialisation lists.
2016-10-22BLADERUNNER: Fix invalid assert in AudStreamThomas Fach-Pedersen
2016-10-22SCI32: Fix slow SCI2.1mid transitionsColin Snover
SSCI transitions code sends a large number of small show rects to the graphics manager, one at a time, for each division of a transition. Each time a rect is submitted, a call to showBits is made. This design was used when transitions for SCI32 were first implemented in ScummVM, and it worked OK because the hardware surface was updated by EventManager::getSciEvent, not showBits, so the large number of calls to showBits from the transitions code did not adversely affect engine performance. Later in SCI32 engine development, hardware surface updates were changed to occur in showBits so that the hardware surface would be updated at frame-out time, instead of at input-in time. This change meant that now the large number of calls to showBits from transitions became very expensive, and the engine would stall constantly refreshing the entire hardware surface. To fix this problem, the transitions code now (1) maximises the size of rects coming from transitions, when possible, and (2) only calls showBits when all the rects from one frame of a transition have been calculated and added to the show rects list. Additionally, there were some arithmetic errors in the implementation of pixel dissolve that have been corrected in this changeset. Fixes Trac#9614.
2016-10-22SDL: Fix typosOri Avtalion
2016-10-22BLADERUNNER: Fix uninitialized variable accessesThomas Fach-Pedersen
Fixes a couple of issues reported by valgrind and clang sanitizers. In particular, the initialization of Actor::_inCombat means that McCoy no longer randomly has his gun out at the beginning of the game. In SliceRenderer::drawInWorld, the assert of _sliceFramePtr has been moved to after the call to setupFrameInWorld which is the method that initializes the field. This misplaced assert caused the game to crash for several people.
2016-10-22TITANIC: Fix looping in CTrueTalkManager::triggerNPCPaul Gilbert
2016-10-22TITANIC: Workaround for Doorbot's 'cloak off' movie playbackPaul Gilbert
The original starts a movie for the Doorbot taking his cloak off, but then plays a cutscene of the doorbot first appearing. Because of this delay, our VideoDecoder wasn't correctly playing the movie after. To fix that, new movies are initially paused when started, and then resumed the first time we try to do events checking for it
2016-10-22I18N: Regenerate translations.datrootfather
2016-10-22I18N: Update German GUI translationrootfather
2016-10-22NEWS/DE: Mention SDL2 filtering optionrootfather
2016-10-22DC: Remove workaround for GCC bug #42841Marcus Comstedt
We now require GCC 4.6, where this bug has been fixed.
2016-10-22DC: Add Dreamcast specific clean targetMarcus Comstedt
2016-10-22DISTS/FEDORA: Update spec build requirementsWillem Jan Palenstijn