aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-10-03GRAPHICS: MACGUI: Render nested submenusEugene Sandulenko
2019-10-02PRINCE: I18N: Update translation (English)Eugene Sandulenko
Currently translated at 47.6% (1312 of 2757 strings)
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-02GRAPHHICS: MACGUI: Fix crash on submenu renderingEugene Sandulenko
2019-10-02GRAPHICS: MACGUI: Fix and simplify nested submenu readingEugene Sandulenko
2019-10-02GRAPHICS: MACGUI: Fix debug menu printingEugene Sandulenko
2019-10-02GRAPHICS: MACGUI: Added debug printout for MacMenuEugene Sandulenko
2019-10-02GRAPHICS: MACGUI: Read nested submenus from PE exesEugene Sandulenko
2019-10-02COMMON: Add Default Cases to Switch Statements in Memstream ClassesD G Turner
These are flagged by GCC if -Wswitch-default is enabled. This avoids possible hard to diagnose bugs if the whence int parameter is accidently set to an unexpected value.
2019-10-02NEWS: Use past tenseThierry Crozat
2019-10-02GRAPHICS: MACGUI: Render submenus recursivelyEugene Sandulenko
2019-10-02GRAPHICS: MACGUI: Take submenu arrow indicator width into accountEugene Sandulenko
2019-10-02GRAPHICS: MACGUI: Change notion of bbox computation to submenusEugene Sandulenko
2019-10-01PRINCE: I18N: Update translation (English)Eugene Sandulenko
Currently translated at 47.2% (1300 of 2757 strings)
2019-10-01I18N: Update translation (Spanish)Rodrigo Vegas Sánchez-Ferrero
Currently translated at 100.0% (1162 of 1162 strings)
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-10-01GRAPHICS: MACGUI: Further work on nested submenusEugene Sandulenko
2019-10-01GRAPHICS: MACGUI: Code for drawing nested submenu arrowsEugene Sandulenko
2019-09-30WAGE: Use better border for the scene windowEugene Sandulenko
2019-09-30PINK: Use proper window border for PDAEugene Sandulenko
2019-09-30COMMON: Fix memory leaks in iconv error caseThierry Crozat
This fixes coverity CID 1405783 and CID 1405784.
2019-09-30GLK: QUEST: Fix Compilation on AmigaOS4D G Turner
2019-09-30PRINCE: I18N: Update translation (English)Eugene Sandulenko
Currently translated at 46.5% (1282 of 2757 strings)
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-30I18N: Update translations templatesThierry Crozat
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-30ANDROID: Update AndroidManifest.xml.in for READ_EXTERNAL_STORAGEThanasis Antoniou
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
2019-09-30SCI: Fix MSVC WarningD G Turner
2019-09-29SCI32: Remove ADGF_TESTING from qfg4 and hoyleTarek Soliman
Closes gh-1871
2019-09-30I18N: Regenerate translations data fileThierry Crozat
2019-09-30GRAPHICS: Add Default Constructor for Cursor StructureD G Turner
This has a similar issue to the Palette structure and thus this will avoid possible unstable uninitialized bugs which could be very hard to track down or replicate.
2019-09-30BLADERUNNER: Replace use of sprintf with Common::String::formatCameron Cawley
2019-09-30GRAPHICS: Add Default Constructor For Palette StructureD G Turner
This is used for outPalette in sci/graphics/palette32 code without calling through the nominal constructor which leaves the various fields _possibly_ uninitialised and thus triggers various compiler warnings. Adding a default constructor fixes the root cause.
2019-09-30SCI: Fix MSVC WarningD G Turner
2019-09-30STARTREK: Fix MSVC Signed vs. Unsigned Byte WarningD G Turner
2019-09-30DEVTOOLS: Fix GCC Compiler Warning in convbdf ToolD G Turner
2019-09-30TONY: Fix Missing Font Base Class InitializationD G Turner
This was causing an MSVC warning.
2019-09-29GLK: QUEST: More warning fixesPaul Gilbert
2019-09-30DEVTOOLS: GLK: Fix GCC Compiler WarningD G Turner
2019-09-29GLK: QUEST: Shadowing fixesPaul Gilbert
2019-09-30COMMON: Fix MSVC Compiler WarningD G Turner
The enum is implicitly int32 by default so causes signed vs. unsigned assignment warnings. Changing this to a const uint32 avoids the issue.