Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-04 | SCI: Really Fix MSVC Warning | D G Turner | |
The Palette structure referred to here is in sci/graphics/helpers.h not in the Graphics CursorMan class as previously thought. Rather than adding a structure constructor which could have side effects currently, the full structure is initialized here to avoid the MSVC warning. The previous change to CursorMan class Palette can be retained as it is a reasonable code improvement in any case. | |||
2019-10-02 | SCI: Return correct value from kFileIOWriteString | sluicebox | |
Fixes corrupt save games in Hoyle5, bug #11174 | |||
2019-10-02 | SCI32: Add HOYLE5 support for original Save/Load screens | sluicebox | |
Trac #11174 | |||
2019-09-29 | SCI32: Extend HOYLE5 Bridge workaround | sluicebox | |
2019-09-30 | SCI: Fix MSVC Warning | D G Turner | |
2019-09-29 | SCI32: Remove ADGF_TESTING from qfg4 and hoyle | Tarek Soliman | |
Closes gh-1871 | |||
2019-09-30 | SCI: Fix MSVC Warning | D G Turner | |
2019-09-30 | SCI: Add fanmade game "Zork: The Great Underground Empire" | Filippos Karapetis | |
Bug #11051 | |||
2019-09-30 | SCI32/SCI: Sync Hoyle 4 and Hoyle 5 Bridge workarounds | Filippos Karapetis | |
These two games use the same scripts for the Bridge sub-game, so their workarounds are the same. Fixes bugs #11162, #11183 | |||
2019-09-29 | SCI32: Fix typo in kGlobalVarHoyle5ResponseTime | Filippos Karapetis | |
2019-09-28 | SCI32: Sync HOYLE5 Bridge volume control | sluicebox | |
2019-09-28 | SCI: Fix HOLYE4 and HOLYE5 Bridge invalid arithmetic | sluicebox | |
Fixes bugs #11163 and #11173. Both games contain the same buggy script. | |||
2019-09-28 | SCI32: Extend the Hoyle 5 bridge slider workaround | Filippos Karapetis | |
This fixes the other sliders in the Bridge game. Thanks to sluicebox | |||
2019-09-28 | SCI: Add The Sect of Achturan fanmade game - bug #11072 | Filippos Karapetis | |
2019-09-28 | SCI32: Fixed several uninitialized reads in Hoyle 5 | Filippos Karapetis | |
Closes bugs #11167, #11168, #11169, #11170, #11171, #11172 #11173 | |||
2019-09-26 | SCI32: Fix QFG4 bridge secret exit | sluicebox | |
Fixes bug #10774 | |||
2019-09-26 | SCI: Remove trailing commas from patch arrays | sluicebox | |
2019-09-25 | SCI32: Fix comment typo | sluicebox | |
2019-09-25 | SCI32: Add QFG4 character import message box | sluicebox | |
Adds the ScummVM message box explaining saved character files to the QFG4 import character screen. | |||
2019-09-23 | SCI32: Fix QFG4 door oiling when picking locks | sluicebox | |
Fixes door bugs in six castle rooms, bug #10832 | |||
2019-09-21 | SCI: Support for Cyrillic input | Eugene Sandulenko | |
2019-09-18 | SCI: Fix detection of Cyrillic characters in messages | Eugene Sandulenko | |
2019-09-17 | SCI: Added Russian QFG1vga | Eugene Sandulenko | |
2019-09-14 | SCI32: Remove QFG4 "a:" prefix from export filename | sluicebox | |
Trac #11082 | |||
2019-09-14 | SCI: Add a sanity check when loading vocab 901 (suffixes) | Filippos Karapetis | |
An invalid access error, uncovered by the Span mechanism. Fixes the QFG2 demo (bug #11147) | |||
2019-09-14 | SCI: Add special check for Russian versions of the games | Eugene Sandulenko | |
2019-09-14 | SCI: Add more script patcher checks for games without a selector vocab | Filippos Karapetis | |
Fixes the LSL1 demo | |||
2019-09-12 | SCI32: Disable QFG4 Change Directory import button | sluicebox | |
2019-09-12 | SCI32: Fix loading system font for Mac games | sluicebox | |
Fixes GK1 Mac crash on load due to reading hard-coded little endian font data as big endian | |||
2019-09-12 | SCI32: Fix loading autosaves (slot 0) | sluicebox | |
Fixes bugs in trac #11029: - Slot 1 loading when user selects slot 0 in ScummVM UI - Slot 1 loading when slot 0 specified on command line - QFG4 slot 0 not appearing in game's original Restore UI | |||
2019-09-10 | SCI32: Fix QFG4 Gate options after dungeon | sluicebox | |
Fixes bug #11044 | |||
2019-09-07 | SCI32: Fix QFG4 Necrotaur gate message | sluicebox | |
Fixes bug #11057 | |||
2019-09-07 | SCI32: Fix QFG4 Ad Avis and Necrotaur chase | sluicebox | |
Fixes several script bugs, trac #11056 | |||
2019-09-06 | SCI: Fix script patch comment typos | sluicebox | |
2019-09-06 | SCI: Fix KQ6 Drink Me missing Mac pic | sluicebox | |
2019-09-06 | SCI: Fix KQ6 Drink Me script patch on Mac | sluicebox | |
2019-09-04 | SCI32: Fix QFG4 Gnome talker at inn | sluicebox | |
Fixes bug #11030 | |||
2019-09-02 | SCI: Fix script patch macro | sluicebox | |
2019-09-02 | SCI: Disable LONGBOW Amiga speed test | sluicebox | |
2019-09-02 | SCI: Fix LONGBOW Amiga Fulk rescue | sluicebox | |
Fixes bug #11137 | |||
2019-09-01 | SCI: Fix ECO2 reappearing items in shack | sluicebox | |
Fixes bug #11135 | |||
2019-08-31 | SCI: Add ECO2 workaround for Ecorder talk button | sluicebox | |
2019-08-30 | SCI: Fix addAsVirtualFiles creating titles with no files | sluicebox | |
Fixes QFG game titles appearing on import screens when no character files exist but save files exist that match fileMask | |||
2019-08-25 | SCI: (FB01 sound driver) - get rid of mutex | athrxx | |
- The mutex was added to avoid the triggering of the assert in backends/midi/windows.cpp, line 95. Meanwhile, this issue has been addressed differently. - SCI does not per se require a mutex for the sound drivers. The engine is mostly thread-safe by avoiding driver calls through the main thread. | |||
2019-08-24 | SCI32: Fix QFG4 Empty Burgomeister room teller | sluicebox | |
Fixes bug #10754 | |||
2019-08-21 | SCI: Fix PQ3 Day 6 house fire repeating | sluicebox | |
Fixes bug #11089 | |||
2019-08-21 | GRAPHICS: Display Mac monochrome cursor inverted pixels | sluicebox | |
Bug #7050 | |||
2019-08-20 | SCI: Fix QFG1VGA Drink water message | sluicebox | |
Fixes bug #11086 | |||
2019-08-19 | SCI: Fix spacing and macro on previous commit | sluicebox | |
2019-08-19 | SCI: Fix PQ3 doctor's mouth animation speed | sluicebox | |
Fixes bug #10255 |