diff options
| author | Travis Howell | 2009-02-07 06:47:19 +0000 |
|---|---|---|
| committer | Travis Howell | 2009-02-07 06:47:19 +0000 |
| commit | 9f2d6d82ca05c4dfe5e649bcda4586c78cb420f3 (patch) | |
| tree | cbbb6a526dfc444dc2099f5a8182cddd37967a5f /engines/touche | |
| parent | 4131d3d07feec064fa129e1675d39eb3b14d4e8e (diff) | |
| download | scummvm-rg350-9f2d6d82ca05c4dfe5e649bcda4586c78cb420f3.tar.gz scummvm-rg350-9f2d6d82ca05c4dfe5e649bcda4586c78cb420f3.tar.bz2 scummvm-rg350-9f2d6d82ca05c4dfe5e649bcda4586c78cb420f3.zip | |
Make the subtitle settings in Options section of the global main menu optional, and enable only for game engines where subtitles settings are synced.
svn-id: r36237
Diffstat (limited to 'engines/touche')
| -rw-r--r-- | engines/touche/detection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index 462b6c9ca4..4a82ee0cfe 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -155,7 +155,8 @@ bool Touche::ToucheEngine::hasFeature(EngineFeature f) const { return (f == kSupportsRTL) || (f == kSupportsLoadingDuringRuntime) || - (f == kSupportsSavingDuringRuntime); + (f == kSupportsSavingDuringRuntime) || + (f == kSupportsSubtitleOptions); } bool ToucheMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const { |
