diff options
author | Kari Salminen | 2009-07-15 13:10:29 +0000 |
---|---|---|
committer | Kari Salminen | 2009-07-15 13:10:29 +0000 |
commit | 11e6c92bd8e9b82a634ca300922d809e07809782 (patch) | |
tree | f5f4eb18fc77176be7e7b4e63d385312685571fd | |
parent | 7751cea790b962467b67d775bbbd6a6f68f2082a (diff) | |
download | scummvm-rg350-11e6c92bd8e9b82a634ca300922d809e07809782.tar.gz scummvm-rg350-11e6c92bd8e9b82a634ca300922d809e07809782.tar.bz2 scummvm-rg350-11e6c92bd8e9b82a634ca300922d809e07809782.zip |
Fix some typos in TransactionError-enumeration's comments.
svn-id: r42503
-rw-r--r-- | common/system.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/system.h b/common/system.h index 5b3c208661..5c91296ab1 100644 --- a/common/system.h +++ b/common/system.h @@ -408,10 +408,10 @@ public: */ enum TransactionError { kTransactionSuccess = 0, /**< Everything fine (use EQUAL check for this one!) */ - kTransactionAspectRatioFailed = (1 << 0), /**< Failed switchting aspect ratio correction mode */ - kTransactionFullscreenFailed = (1 << 1), /**< Failed switchting fullscreen mode */ - kTransactionModeSwitchFailed = (1 << 2), /**< Failed switchting the GFX graphics mode (setGraphicsMode) */ - kTransactionSizeChangeFailed = (1 << 3) /**< Failed switchting the screen dimensions (initSize) */ + kTransactionAspectRatioFailed = (1 << 0), /**< Failed switching aspect ratio correction mode */ + kTransactionFullscreenFailed = (1 << 1), /**< Failed switching fullscreen mode */ + kTransactionModeSwitchFailed = (1 << 2), /**< Failed switching the GFX graphics mode (setGraphicsMode) */ + kTransactionSizeChangeFailed = (1 << 3) /**< Failed switching the screen dimensions (initSize) */ }; /** |