aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
AgeCommit message (Collapse)Author
2019-02-18SCI: Add QFG1VGA Mac workaround for centaursluicebox
2019-02-18SCI: Apply QFG1VGA innkeeper workaround to Macsluicebox
2019-02-13SCI32: Fix QFG4 guild secret passageVhati
Fixes the walkable polygon not changing when it's revealed, bug #9894
2019-02-13SCI: Fix ECO1 column puzzle, bug #10885sluicebox
Works around a script bug that prevents the game from being completed
2019-02-13SCI: Fix FPFP Mac easter egg, bug #7065sluicebox
Works around a script bug that locks up the game
2019-02-12SCI: Fix ECO1CD Mosaic puzzle crash, bug #10884sluicebox
Fixes a bug in the original that crashes the interpreter
2019-02-10SCI: Fix ECO1CD prophecy scroll, bug #10883sluicebox
Fixes a script bug that breaks messages
2019-02-08SCI: Fix QFG3 combat speed throttling patchVhati
Replaces an earlier patch that had a bad byte. Original instruction: 0x80, 0xd2, // lsg global[D2h]. The op byte does not match the expected length or opcode comment. 0x80 would be: lag uint16. 0x89 is: lsg byte. This new patch also does not disturb the logic of a nearby IF block.
2019-02-08SCI: Fix out of bounds issue in getFrameSizeJean-Christophe Rona
If there is no item at all, returns a (0,0,0,0) Rect.
2019-02-04SCI32: Cleanup QFG4 Remove a commented workaroundVhati
It was superseded by commit aa9a1ab.
2019-02-03SCI: Fix LB1 left staircase lockup, bug #10879sluicebox
Fixes a lockup in the original
2019-02-03SCI: Fix ECO1CD giving Superfluous the oily shellsluicebox
Fixes a script bug in the CD version, bug #10881
2019-02-03SCI: Fix inconsistent debugger breakpoint messagesVhati
Fixes bp_function and bp_address not printing the created breakpoint, as happens with the other bp_ commands.
2019-02-03SCI: Cleanup Hoyle patchesVhati
2019-02-03SCI: Cleanup SQ6,Torin patchesVhati
2019-02-03SCI: Cleanup RAMA,Shivers patchesVhati
2019-02-03SCI: Cleanup SpaceQuest 1-5 patchesVhati
2019-02-03SCI: Cleanup QFG4 patchesVhati
2019-02-03SCI: Cleanup QFG3 patchesVhati
2019-02-03SCI: Cleanup QFG2 patchesVhati
2019-02-03SCI: Cleanup QFG1 patchesVhati
2019-02-03SCI: Cleanup PoliceQuest patchesVhati
2019-02-03SCI: Cleanup Phantasmagoria patchesVhati
2019-02-03SCI: Cleanup Mother Goose patchesVhati
2019-02-03SCI: Cleanup LauraBow2 patchesVhati
2019-02-03SCI: Cleanup LauraBow1 patchesVhati
2019-02-03SCI: Cleanup LSL patchesVhati
2019-02-03SCI: Cleanup Longbow patchesVhati
2019-02-03SCI: Cleanup Lighthouse patchesVhati
2019-02-03SCI: Cleanup KQ7 patchesVhati
2019-02-03SCI: Cleanup KQ6 patchesVhati
2019-02-03SCI: Cleanup KQ5 patchesVhati
2019-02-03SCI: Cleanup GK2 patchesVhati
2019-02-03SCI: Cleanup GK1 patchesVhati
2019-02-03SCI: Cleanup Pharkas patchesVhati
2019-02-03SCI: Cleanup fangame patchesVhati
2019-02-03SCI: Cleanup EcoQuest patchesVhati
2019-02-03SCI: Cleanup Conquests of Camelot patchesVhati
2019-02-03SCI: Cleanup SCI32 patchesVhati
2019-02-02SCI32: LIGHTHOUSE: Add French version 1.0cJean-Christophe Rona
2019-01-18SCI32: Fix spacingFilippos Karapetis
2019-01-18SCI32: Fix QFG4 castle gate after geas (#1479)Vhati
Fixes hero being able to walk through the closed gate, bug #10871
2019-01-18SCI32: Fix QFG4 castle door lockupVhati
Fixes doors when rogues attempt to open them, bug #10874
2019-01-17SCI: Fix debugger bp_action help messageVhati
Fixes the help for bp_action: 'none' arg should be 'ignore'
2019-01-14SCI32: Fix QFG4 forest 580 pathfindingVhati
Adds a penalty workaround for room 580 entry from the south, bug #10870
2019-01-13SCI32: Fix QFG4 Trigger and Open spellsVhati
Fixes repeat casting and combination with Summon Staff, bug #10860
2019-01-06SCI32: Fix QFG4 forest pathfindingVhati
Adds workarounds for odd detours during entry, bugs #10857, #10858
2019-01-05SCI32: Cleanup QFG4 script patchesVhati
Trivially revises comments and var names for consistency. Changes hardcoded selector bytes to macros. Confirms early patches against editions not tested at the time. Combines two TRAP array patches (commits 6c44106, aceb528) into one.
2019-01-05SCI: Rename kRestartGame to kRestartGame16Lars Skovlund
2019-01-05SCI32: Stub out kRestartGameLars Skovlund
Restarting was only supported in QfG4, GK1 and PQ4. Those three used makeshift script code. The kernel call was stubbed out in SSCI as well. Fixes bug #10681.