aboutsummaryrefslogtreecommitdiff
path: root/engines/glk
AgeCommit message (Collapse)Author
2019-12-16GLK: ADRIFT: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-16GLK: MAGNETIC: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-16GLK: JACL: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-16GLK: SCOTT: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-16GLK: QUEST: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-12-15GLK: ARCHETYPE: Fix Unused Const Variable Compiler WarningD G Turner
This is emitted from Clang with -Wunused-const-variable.
2019-12-11GLK: Fix Missing Default Switch Cases in Engine Base CodeD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-11-27GLK: AGT: Compilation fixPaul Gilbert
2019-11-27GLK: AGT: Route savegames through the enginePaul Gilbert
2019-11-27GLK: AGT: Move configuration options into AGT classPaul Gilbert
2019-11-27GLK: AGT: Remove old license informationPaul Gilbert
2019-11-27GLK: AGT: Properly exit when game window is closedPaul Gilbert
2019-11-27GLK: AGT: Startup fixesPaul Gilbert
2019-11-27GLK: AGT: Initialization fixesPaul Gilbert
2019-11-27GLK: AGT: Added subengine filesPaul Gilbert
2019-11-27GLK: AGT: Added detection entriesPaul Gilbert
2019-11-27GLK: AGT: Skeleton enginePaul Gilbert
2019-11-25GLK: Fix Compilation on AmigaOS4D G Turner
2019-11-24GLK: Implement glk_schannel_create_extPaul Gilbert
2019-11-23GLK: MAGNETIC: Even Further Fixes for AmigaOS4 CompilationD G Turner
2019-11-23GLK: MAGNETIC: Further Fixes for AmigaOS4 CompilationD G Turner
2019-11-23GLK: MAGNETIC: Fix Compilation on AmigaOS4D G Turner
This seems to be an issue where the initializer for the members called log get confused for a call to the log() standard library function. Renaming these members with leading underscores and adding some checks for nullptr before usage are good practice in any case and should fix this.
2019-11-22GLK: MAGNETIC: Compilation fixPaul Gilbert
2019-11-22GLK: MAGNETIC: Hooking up loading/saving gamesPaul Gilbert
2019-11-22GLK: Fixing defines clashes between sub-enginesPaul Gilbert
2019-11-22GLK: MAGNETIC: Moving local method static variables to class fieldsPaul Gilbert
2019-11-22GLK: MAGNETIC: Making functions all class methods, statics into class fieldsPaul Gilbert
2019-11-22GLK: MAGNETIC: Startup fixesPaul Gilbert
2019-11-22GLK: MAGNETIC: Added subengine filesdreammaster
2019-11-17GLK: QUEST: Added versionPaul Gilbert
2019-11-17GLK: SCOTT: CleanupPaul Gilbert
2019-11-17GLK: JACL: Add interpreter versionPaul Gilbert
2019-11-17GLK: HUGO: CleanupPaul Gilbert
2019-11-17GLK: GLULXE: CleanupPaul Gilbert
2019-11-17GLK: GLULXE: Fix alignment is sensitive to packing warnings in VSPaul Gilbert
2019-11-17GLK: ARCHETYPE: Add versionPaul Gilbert
2019-11-17GLK: ALAN3: CleanupPaul Gilbert
2019-11-17GLK: ALAN2: CleanupPaul Gilbert
2019-11-17GLK: ADVSYS: CleanupPaul Gilbert
2019-11-17GLK: ADRIFT: CleanupPaul Gilbert
2019-11-17GLK: LEVEL9: Stretch images to cover the entire upper window areaPaul Gilbert
2019-11-16GLK: ARCHETYPE: Allowing savegames from launcherPaul Gilbert
2019-11-16GLK: LEVEL9: Fix game Ids for Price of MagikPaul Gilbert
2019-11-15GLK: ARCHETYPE: Fix saving gamesPaul Gilbert
2019-11-12GLK: ARCHETYPE: Hooking up savegame codePaul Gilbert
2019-11-12GLK: ARCHETYPE: Suppress Fallthrough Compiler WarningsD G Turner
Not sure if these fallthroughs are intended, so marked with FIXME comments.
2019-11-11GLK: ARCHETYPE: gcc compilation fixesPaul Gilbert
2019-11-11GLK: ARCHETYPE: Fixes to correctly parse multi-word inputsPaul Gilbert
2019-11-11GLK: ARCHETYPE: Cleaner exit when game is quitPaul Gilbert
2019-11-11GLK: ARCHETYPE: Fix quitting the gamePaul Gilbert