aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2019-10-06SUPERNOVA: Hook up F5 to the Main MenuThierry Crozat
In the original F5 is used to save/load the game. Since we are using the ScummVM save/load mechanism I think it makes sense to open the main menu, that contains load and save buttons, on F5.
2019-10-05GLK: Add Streams methods for encapsulating ScummVM streamsPaul Gilbert
2019-10-05GLK: Splitting bulk of FileStream up into an IOStream base classPaul Gilbert
2019-10-05SAGA: Add Windows trial version of ITE for reference (not supported)Eugene Sandulenko
2019-10-05MOHAWK: Add Myst ME as a subengine, and mark 'jpeg' as a required dependencyEugene Sandulenko
Because our build system does not allow recursive dependencies, inserting #error for incorrect configuration. For enabling mystme, myst target must be enabled as well
2019-10-05WINTERMUTE: Engine requires jpeg and png as dependeciesEugene Sandulenko
2019-10-05GLK: Engine requires jpeg and png as dependenciesEugene Sandulenko
2019-10-05SCI32: Handle the special Bridge save/load screens in Hoyle 5Filippos Karapetis
Fixes saving/loading the Bridge hands using the ScummVM save/load screens - bug #11174
2019-10-05SCI32: Add the French version of PQ:SWAT (bug #11100)Filippos Karapetis
2019-10-05WINTERMUTE: Fix Possible Uninitialized Variable Compiler WarningsD G Turner
2019-10-05LAB: Replace memcpy of overlapping region with memmoveD G Turner
The result of using memcpy when source and destination overlap is not clearly defined, so use memmove instead which avoids this problem.
2019-10-04PRINCE: Remove ADGF_TESTING flagEugene Sandulenko
2019-10-04HDB: Remove ADGF_TESTING flagEugene Sandulenko
2019-10-04CRYOMNI3D: Remove ADGF_TESTING flagEugene Sandulenko
2019-10-04PINK: Properly redraw game screen when browsing menusEugene Sandulenko
2019-10-04PINK: Do not use Mac fonts for menu renderingEugene Sandulenko
2019-10-04PINK: Add built-in empty border and use for textsEugene Sandulenko
2019-10-04PINK: Use proper menu action ids. The PDA now works!Eugene Sandulenko
2019-10-04GRAPHICS: MACGUI: Unify MacMenuItem and MacMenuSubItemEugene Sandulenko
2019-10-04STARTREK: Fix GCC Duplicated Condition WarningD G Turner
These are flagged by GCC if -Wduplicated-cond is enabled.
2019-10-04SCUMM: Fix GCC Duplicated Condition WarningD G Turner
These are flagged by GCC if -Wduplicated-cond is enabled.
2019-10-04SCI: Really Fix MSVC WarningD 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-04BLADERUNNER: Add More Missing Switch Default Cases in ESPER ScriptD G Turner
This also removes most of the return calls from one of these switch statements using a return variable instead to reduce complexity.
2019-10-04BLADERUNNER: Add Some Missing Switch Default CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-10-03BLADERUNNER: Remove use of C99 math functionsCameron Cawley
2019-10-03CRYOMNI3D: Fix typoLe Philousophe
2019-10-03CRYOMNI3D: Add detections entries for Versailles DVDLe Philousophe
2019-10-03MUTATIONOFJB: Remove Unused Private Member FieldD G Turner
This was causing a GCC Compiler Warning when -Wunused-private-field is set.
2019-10-03SLUDGE: Really Fix MSVC WarningsD G Turner
2019-10-03DIRECTOR: Fix MSVC WarningsD G Turner
2019-10-03SLUDGE: Fix Remaining MSVC WarningD G Turner
2019-10-03SLUDGE: Further Fixes for MSVC WarningsD G Turner
This _should_ fix the remaining issues with signed vs. unsigned warnings in the TransparentSurface blit method calls.
2019-10-03MACVENTURE: Add Missing Switch Default CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-10-02SUPERNOVA: Remove ADGF_TESTING flagThierry Crozat
2019-10-02SCI: Return correct value from kFileIOWriteStringsluicebox
Fixes corrupt save games in Hoyle5, bug #11174
2019-10-02SCI32: Add HOYLE5 support for original Save/Load screenssluicebox
Trac #11174
2019-10-01MACVENTURE: Fix MSVC WarningsD G Turner
2019-09-30GLK: QUEST: Add save and restore commandsPaul Gilbert
2019-09-30GLK: QUEST: Support loading savegames from the launcherPaul Gilbert
2019-09-30GLK: QUEST: Fleshing out savegame code, hooking to GMMPaul Gilbert
2019-09-30WAGE: Use better border for the scene windowEugene Sandulenko
2019-09-30PINK: Use proper window border for PDAEugene Sandulenko
2019-09-30GLK: QUEST: Fix Compilation on AmigaOS4D G Turner
2019-09-30GLK: ADRIFT: Fix Remaining GCC WarningsD G Turner
These were from -Wignored-qualifiers. Adding the const keyword to the cast does not do anything since the assignment target is qualified by const in any case hence this is ignored and generates a warning.
2019-09-30GLK: ADRIFT: Add const qualifier for some function call parametersD G Turner
2019-09-30SCUMM: Detect language file of Steam version of DIG, fixes bug #10697Ben Castricum
2019-09-30SCUMM: Don't limit Steam MD5 of DIG to englishBen Castricum
Steam also allows other languages to be downloaded. Those have the same MD5.
2019-09-29SCI32: Extend HOYLE5 Bridge workaroundsluicebox
2019-09-30GLK: ADRIFT: Fix Remaining GCC Fallthrough WarningsD G Turner
2019-09-30SLUDGE: Fix Some MSVC WarningsD G Turner