aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-12-22KYRA: (EOB) - fix possible invalid mem accessathrxx
(this could happen if you create a new character, then immediately delete it, then return to the main menu via Esc and then load a save file)
2019-12-22DIRECTOR: Add wait between beeps.Roland van Laar
The delay was choosen based on hearing the delay in the original Director 4 beep script.
2019-12-22DIRECTOR: Fix calling of BeepRoland van Laar
- Converts beep called with zero args to beep(1) - Beep arg starts counting at 1.
2019-12-22KYRA: (EOB/PC98) - add paranoia assertathrxx
2019-12-22KYRA: (HOF) - fix bug #10877 (Sound issues in the Legend of Kyrandia 2)athrxx
2019-12-22DIRECTOR: Fix implementation of converting references to stringsEugene Sandulenko
2019-12-22DIRECTOR: Store also unformatted text for text castEugene Sandulenko
2019-12-22DIRECTOR: LINGO: Fix grammar for referencesEugene Sandulenko
2019-12-22DIRECTOR: It is fine to have non-existent references in score. Thus, hide ↵Eugene Sandulenko
the warning
2019-12-22DIRECTOR: Improved debug outputEugene Sandulenko
2019-12-22PRINCE: I18N: Update translation (Russian)Eugene Sandulenko
Currently translated at 100.0% (2757 of 2757 strings)
2019-12-22PRINCE: I18N: Update translation (English)Eugene Sandulenko
Currently translated at 68.2% (1879 of 2757 strings)
2019-12-22PRINCE: I18N: Update translation (English)Eugene Sandulenko
Currently translated at 62.2% (1716 of 2757 strings)
2019-12-22GRAPHICS: MACGUI: Show menu always when clickedEugene Sandulenko
2019-12-21SCI32: Fix PHANT1 Stab flag reset in chapter 7sluicebox
2019-12-21SCI32: Fix PHANT1 videos with out of sync censorshipsluicebox
2019-12-21SCI32: Fix PHANT1 Chapel west exit during chasesluicebox
2019-12-21SCI32: Fix PHANT1 when quitting ScummVM during chasesluicebox
2019-12-21SCI: Implement kFileIOCopysluicebox
Allows patching a Phantasmagoria 1 script to copy instead of rename. Although most games can call this through their File:copy script, none have been discovered yet that do.
2019-12-21SCI32: Fix PHANT1 Chase history deletion in chapter 7sluicebox
blerg
2019-12-21SCI32: Fix PHANT1 Wine cask hotspot in chapter 5sluicebox
2019-12-22DIRECTOR: LINGO: Remove D4-specific testsEugene Sandulenko
2019-12-22DIRECTOR: LINGO: Fix 'me' syntax. It is a functionEugene Sandulenko
2019-12-22DIRECTOR: LINGO: Register only builtins per Director versionEugene Sandulenko
2019-12-21SHERLOCK: Enable the use of TTS to read descriptions as a "narrator" for The ↵neuromancer
Case of Serrated Scalpel
2019-12-21MADS: Enable the optional use of TTS to read descriptions as a narrator in ↵neuromancer
Rex Nebular
2019-12-20KYRA: (EOB) - fix party transfer from PC-98 to other platformsathrxx
Unlike the original, ScummVM intends to allow EOB1 party transfer between any versions (Amiga->DOS or vice versa). Now, this also works from PC-98 to non-PC-98.
2019-12-20LURE: Enable the optional use of TTS to read descriptions as a narratorneuromancer
2019-12-20DIRECTOR: LINGO: Added debugging lines for GLR parserEugene Sandulenko
2019-12-20DIRECTOR: LINGO: Fix matching local arguments while parsingEugene Sandulenko
2019-12-20DIRECTOR: LINGO: Match local arguments during parsingEugene Sandulenko
2019-12-20DIRECTOR: LINGO: Added more granularity to definition parse stateEugene Sandulenko
2019-12-20KYRA: (EOB/PC98) - remove unused variableathrxx
2019-12-20AUDIO: (FLUIDSYNTH) - limit config.h include to builds that need itathrxx
makes life a bit more convenient for some MSVC users (or at least for me)
2019-12-20KYRA: (EOB2/FM-TOWNS) - fix minor color glitchathrxx
- in nightmare sequence in dungeon level -4 - can not always be noticed
2019-12-20KYRA: (EOB/PC98) - fix music mute settingathrxx
(this has to be done a bit different for PC-98, since - unlike the other currently supported platforms - PC-98 has ingame music)
2019-12-20DIRECTOR: LINGO: Improved debug outputEugene Sandulenko
2019-12-20MUTATIONOFJB: Fix Unused Variable Compiler WarningD G Turner
2019-12-20BLADERUNNER: replace c_long with explicit c_int32 (#1982)Niv Baehr
* BLADERUNNER: replace long with explicit int32 * BLADERUNNER: add executable permissions to scripts
2019-12-19GLK: ADRIFT: Fix Unused Constant Compiler WarningD G Turner
2019-12-19FULLPIPE: Remove Unused Private Members from Sound ClassD G Turner
These cause warnings from Clang when -Wunused-private-field is set. Was initially unsure if this class was saved as it was a subclass of MemoryObject, but changing this appears to be safe as the save method is not implemented in any case.
2019-12-19WINTERMUTE: Refactor UIEdit::handleKeypress()lolbot-iichan
This fixes https://bugs.scummvm.org/ticket/11033 Removed checking printable property for system keys. Refactored whole function to make it a bit more readable. Reference implementations: https://github.com/retrowork/wmelite/blob/master/src/UIEdit.cpp#L724 https://github.com/retrowork/Wintermute-Engine/blob/master/src/engine_core/wme_base/UIEdit.cpp#L708
2019-12-19WINTERMUTE: Handle isCurrentPrintable property for WME 1.x and WME Litelolbot-iichan
1. Moved KEYCODE_SPACE to "alphanumeric or punctuation" group. 2. Splited "else" into before and after WME_LITE.
2019-12-19DIRECTOR: LINGO: Make 'method {identifier}' as a single token.Eugene Sandulenko
This lets avoid clashes with method names matching built-ins.
2019-12-19GLK: ARCHETYPE: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-19TRAVIS: Really Fix OSX Builder with CCacheD G Turner
2019-12-19TRAVIS: Fix OSX Builder SyntaxD G Turner
2019-12-19TRAVIS: Use CCache for OSX BuilderD G Turner
The OSX builder keeps failing with timeouts and thus notifying false positives of build errors. This was not using ccache to speed up the build, so am trying to implement usage of this.
2019-12-19GLK: FROTZ: Fix Missing Default Switch CaseD G Turner
This is flagged by GCC if -Wswitch-default is enabled.
2019-12-18DIRECTOR: LINGO: Fix crash for commandless menu itemsEugene Sandulenko