DREAMWEB: do not call updatescreen before quitting, fixed crash on dosreturn, cleaned up dosreturn stub

This commit is contained in:
Vladimir Menshakov 2011-06-18 13:33:24 +04:00
parent 4cdc9c9f8e
commit cf671227fe
6 changed files with 33 additions and 10 deletions

View file

@ -83,6 +83,12 @@ bool DreamWebMetaEngine::hasFeature(MetaEngineFeature f) const {
}
bool DreamWeb::DreamWebEngine::hasFeature(EngineFeature f) const {
switch(f) {
case kSupportsRTL:
return true;
default:
return false;
}
return false;
}