Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-05 | UPDATES: Added MacOS delta packages for 2.1.0 | Eugene Sandulenko | |
2019-10-05 | I18N: Update translations templates | Thierry Crozat | |
2019-10-05 | MOHAWK: Add Myst ME as a subengine, and mark 'jpeg' as a required dependency | Eugene 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-05 | ANDROID: Bump the target SDK to match the Google Play release | Eugene Sandulenko | |
2019-10-05 | ANDROID: Added info about historical release version codes | Eugene Sandulenko | |
2019-10-05 | WINTERMUTE: Engine requires jpeg and png as dependecies | Eugene Sandulenko | |
2019-10-05 | GLK: Engine requires jpeg and png as dependencies | Eugene Sandulenko | |
2019-10-05 | DISTS: WIN32: Update Inno Setup file | Lothar Serra Mari | |
2019-10-05 | DISTS: Added MacOS signatures for 2.1.0 | Eugene Sandulenko | |
2019-10-05 | I18N: Update translations templates | Thierry Crozat | |
2019-10-05 | SCI32: Handle the special Bridge save/load screens in Hoyle 5 | Filippos Karapetis | |
Fixes saving/loading the Bridge hands using the ScummVM save/load screens - bug #11174 | |||
2019-10-05 | SCI32: Add the French version of PQ:SWAT (bug #11100) | Filippos Karapetis | |
2019-10-05 | UPDATES: Added signatures for 2.1.0 Windows builds | Eugene Sandulenko | |
2019-10-05 | DISTS: Added new keys for Sparkle 1.22.0 | Eugene Sandulenko | |
2019-10-05 | OPENGL: Add Missing Default Switch Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-10-05 | NETWORKING: Fix Signed vs. Unsigned Compiler Warnings | D G Turner | |
2019-10-05 | WINTERMUTE: Fix Possible Uninitialized Variable Compiler Warnings | D G Turner | |
2019-10-05 | SWITCH: Remove Set But Unused Variables from Events Code | D G Turner | |
These were causing compiler warnings for the porter. | |||
2019-10-05 | LAB: Replace memcpy of overlapping region with memmove | D 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-05 | GRAPHICS: MACGUI: Fix Possible Out of Bounds Read with Trailing Ampersand | D G Turner | |
Since the ampersand is used as an escape character, it is repeated when it actually appears in the string. Unfortunately, this requires a one character lookahead which could result in reading beyond the string if this ampersand is the last character (which would be malformed, but possible). To avoid an out of bounds read, this is now qualified by the string length. Trailing ampersands will now be ignored without issue. | |||
2019-10-05 | GRAPHICS: MACGUI: Fix GCC Signed vs. Unsigned Warnings | D G Turner | |
2019-10-04 | BUILD: Update ideproject target to the current create_project behavior | Eugene Sandulenko | |
2019-10-04 | PRINCE: Remove ADGF_TESTING flag | Eugene Sandulenko | |
2019-10-04 | HDB: Remove ADGF_TESTING flag | Eugene Sandulenko | |
2019-10-04 | CRYOMNI3D: Remove ADGF_TESTING flag | Eugene Sandulenko | |
2019-10-04 | PINK: Properly redraw game screen when browsing menus | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Add possibility to setup engine redraw callback | Eugene Sandulenko | |
2019-10-04 | PINK: Do not use Mac fonts for menu rendering | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Implement enforcing built-in fonts | Eugene Sandulenko | |
2019-10-04 | PINK: Add built-in empty border and use for texts | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Add possibility to pass borders as a surface | Eugene Sandulenko | |
2019-10-04 | MAEMO: Update debian/changelog | Tarek Soliman | |
2019-10-04 | PINK: Use proper menu action ids. The PDA now works! | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Fix action id processing from the PE exe menus | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: Properly process && in PE exe menus | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Enhande printMenu output | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Properly process action menu ids from PE exe | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Remove extra debug output | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Unify MacMenuItem and MacMenuSubItem | Eugene Sandulenko | |
2019-10-04 | GRAPHICS: MACGUI: Implement Windows-style shortcut underlining | Eugene Sandulenko | |
2019-10-04 | COMMON: Add methods to U32String to match String | Eugene Sandulenko | |
2019-10-04 | JANITORIAL: Whitespace fixes | Eugene Sandulenko | |
2019-10-04 | CONFIGURE: Add android-mips64 in clarification for target hosts | antoniou79 | |
2019-10-04 | CONFIGURE: Add clarification of possible target android hosts | antoniou79 | |
2019-10-04 | STARTREK: Fix GCC Duplicated Condition Warning | D G Turner | |
These are flagged by GCC if -Wduplicated-cond is enabled. | |||
2019-10-04 | SCUMM: Fix GCC Duplicated Condition Warning | D G Turner | |
These are flagged by GCC if -Wduplicated-cond is enabled. | |||
2019-10-04 | COMMON: Add Missing Switch Default Case in ZLIB Class | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-10-04 | COMMON: Add Missing Default Switch Cases in DCT Class | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
2019-10-04 | MT32: Add Missing Default Switch Cases | D G Turner | |
These are flagged by GCC if -Wswitch-default is enabled. | |||
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. |