LAB: Add support for saving and loading games from the GMM
This commit is contained in:
parent
4548cbddb5
commit
3977a7ffa1
5 changed files with 33 additions and 9 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue