LAB: Add support for saving and loading games from the GMM

This commit is contained in:
Filippos Karapetis 2015-12-27 23:22:54 +02:00
parent 4548cbddb5
commit 3977a7ffa1
5 changed files with 33 additions and 9 deletions

View file

@ -155,9 +155,10 @@ bool LabMetaEngine::hasFeature(MetaEngineFeature f) const {
}
bool Lab::LabEngine::hasFeature(EngineFeature f) const {
return (f == kSupportsRTL);
//(f == kSupportsLoadingDuringRuntime) ||
//(f == kSupportsSavingDuringRuntime);
return
(f == kSupportsRTL) ||
(f == kSupportsLoadingDuringRuntime) ||
(f == kSupportsSavingDuringRuntime);
}
SaveStateList LabMetaEngine::listSaves(const char *target) const {