LAB: Rewrite the save/load system

The two different save/load dialogs from the original have been dropped
and replaced with the ScummVM save/load dialogs. The whole save/load
code has been rewritten to be endian safe and use our common code. The
original save format has not been preserved. The current implementation
crashes when loading, but it's a good start
This commit is contained in:
Filippos Karapetis 2015-02-19 15:41:15 +02:00 committed by Eugene Sandulenko
parent 6af7abeab2
commit 0a71969018
10 changed files with 324 additions and 4628 deletions

View file

@ -43,10 +43,6 @@
namespace Lab {
bool LabEngine::hasFeature(EngineFeature f) const {
return (f == kSupportsRTL) ? true : false;
}
LabEngine *g_lab;
LabEngine::LabEngine(OSystem *syst, const ADGameDescription *gameDesc)