[Scummvm-cvs-logs] scummvm master -> 08375150ca0b4719ddda7932d5f5061fff225a28
whoozle
whoozle at yandex.ru
Fri Jun 24 07:43:11 CEST 2011
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
08375150ca DREAMWEB: Show subtitle options only for CD version
Commit: 08375150ca0b4719ddda7932d5f5061fff225a28
https://github.com/scummvm/scummvm/commit/08375150ca0b4719ddda7932d5f5061fff225a28
Author: Vladimir Menshakov (whoozle at yandex.ru)
Date: 2011-06-23T22:41:13-07:00
Commit Message:
DREAMWEB: Show subtitle options only for CD version
Changed paths:
engines/dreamweb/detection.cpp
diff --git a/engines/dreamweb/detection.cpp b/engines/dreamweb/detection.cpp
index f3d5b07..47e25de 100644
--- a/engines/dreamweb/detection.cpp
+++ b/engines/dreamweb/detection.cpp
@@ -85,8 +85,9 @@ bool DreamWebMetaEngine::hasFeature(MetaEngineFeature f) const {
bool DreamWeb::DreamWebEngine::hasFeature(EngineFeature f) const {
switch(f) {
case kSupportsRTL:
- case kSupportsSubtitleOptions:
return true;
+ case kSupportsSubtitleOptions:
+ return _gameDescription->desc.flags & ADGF_CD;
default:
return false;
}
More information about the Scummvm-git-logs
mailing list