diff options
author | Christopher Page | 2008-08-16 02:53:16 +0000 |
---|---|---|
committer | Christopher Page | 2008-08-16 02:53:16 +0000 |
commit | ec8dac5540d87925525523eb1715abc1ec271261 (patch) | |
tree | 011dadbf571c2794c7868827bd910aec51e2110d /engines/touche | |
parent | dca5f7dc20743d57c30ee2978979c3f5b313658f (diff) | |
download | scummvm-rg350-ec8dac5540d87925525523eb1715abc1ec271261.tar.gz scummvm-rg350-ec8dac5540d87925525523eb1715abc1ec271261.tar.bz2 scummvm-rg350-ec8dac5540d87925525523eb1715abc1ec271261.zip |
Added a MetaEngineFeature for RTL support, the RTL button is disabled in the GMM if the engine doesn't support it
svn-id: r33921
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/detection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp index c4c428ba8d..89655ac9ab 100644 --- a/engines/touche/detection.cpp +++ b/engines/touche/detection.cpp @@ -143,6 +143,7 @@ public: bool ToucheMetaEngine::hasFeature(MetaEngineFeature f) const { return + (f == kSupportsRTL) || (f == kSupportsListSaves) || (f == kSupportsDirectLoad) || (f == kSupportsDeleteSave); |