aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/savefile.cpp
AgeCommit message (Collapse)Author
2019-11-26BLADERUNNER: Fixed crossplatform thumbnails in savesPeter Kohaut
Thumbnail was broken when savefile was transfered between big endiang and little endian platforms. closes #11258
2019-08-31BLADERUNNER: Use best pixel format on every platformPeter Kohaut
Updated all drawing routines to be pixel format agnostic. Might decrease performance.
2019-07-17BLADERUNNER: Use unsigned 32bit diff for time durationsThanasis Antoniou
2019-05-27BLADERUNNER: Show saved game creation date and add play timeDavid Fioramonti
Bumped saved game version to 2 to add play time. Can load version 1 saves and save/load version 2 saves.
2019-05-25BLADERUNNER: Fixes for UG18 Guzza scene casesThanasis Antoniou
2019-04-17BLADERUNNER: Fixed typo in pixelFormat namePeter Kohaut
2019-04-17BLADERUNNER: Abstraction from 555 pixel formatPeter Kohaut
Removing hardcoded 555 pixel format to support Android
2019-04-01BLADERUNNER: Prevent lockup when save file is missing dataThanasis Antoniou
Missing thumbnail data was causing a lockup on mouse-over Still working on debugging why these corrupted save files may be created -- (Game_Over()) autosaves.
2019-03-09BLADERUNNER: Savagame names fixesPeter Kohaut
It was not possible to change the name of exisitng savegame Saves were read too ofter just for over-drawing the thumbnail
2019-03-04BLADERUNNER: Fixed overflow in savegame namePeter Kohaut
2019-03-04BLADERUNNER: Cleanup of TODO notesPeter Kohaut
2019-02-12BLADERUNNER: Removal of memory leaksPeter Kohaut
2019-02-11BLADERUNNER: Cleanup of audio codePeter Kohaut
Separated audio cache. Fixed bug in the audio cache where still used sound might get freed. Fixes crashes when engine is unloading which were caused by a race condition between the timer code and engine teardown code.
2019-02-02BLADERUNNER: Fixed resource leak in game listingPeter Kohaut
This was causing issues with loading / saving games
2018-12-05BLADERUNNER: Add in-game saving screenPeter Kohaut
2018-11-25BLADERUNNER: Add in-game loading screenPeter Kohaut
It is also possible to start new game from it.
2018-11-24BLADERUNNER: Fixed ambient sounds after loadPeter Kohaut
After loading a game, ambient sounds stoped playing, now they are working properly. Also some smaller compiler warnings were fixed.
2018-11-24BLADERUNNER: Preliminary saving & loading supportPeter Kohaut
Saving and loading is accessible via ScummVM dialogs. No in-game UI support yet. It is possible to load saves from original game via debugger console. ScummVM saves have additional header and are incompatibile with original game.
2018-03-24BLADERUNNER: Load game methodsPeter Kohaut
save methods update replaced few char* with Common::String changed few pointers to references
2018-03-24BLADERUNNER: Save game methodsThomas Fach-Pedersen