aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/glulxe/exec.cpp
AgeCommit message (Collapse)Author
2019-09-02GLK: GLUXE: Fix GCC Compiler WarningsD G Turner
These were for possible unintended fallthrough, though inspection shows that these were occurring after fatal error handler calls so adding breaks would not be an issue. However, since these call error() and thus the breaks will not be executed and are thus "dead" code, this might provoke warnings in future. Another solution would have been to comment that these fallthroughs are intended, but breaks are better in case the error handler is changed in future.
2019-06-16GLK: Further changeover of sub-engines to use new savegame codePaul Gilbert
2019-05-03GLK: GLULXE: Move savegame code into loadGameData/saveGameDataPaul Gilbert
2019-04-28GLK: Record gli arrays for memory streamsPaul Gilbert
2019-04-17GLK: GLULXE: astyle formattingdreammaster
2019-04-17GLK: GLULXE: Add miscellaneous missing methodsPaul Gilbert
2019-04-17GLK: GLULXE: Add string methodsPaul Gilbert
2019-04-17GLK: GLULXE: Add operand methodsPaul Gilbert
2019-04-17GLK: GLULXE: Added exec methodsPaul Gilbert