diff options
author | Jonathan Gray | 2003-11-07 02:31:44 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-11-07 02:31:44 +0000 |
commit | 239aea0ff01b1fc3f4a62c35f0362550de2f696c (patch) | |
tree | 2c809e7d578134e867fe6c5a0137e054a87c2b86 /base | |
parent | f6e1915b7744ca7b1b5c8c0ee76bead0fc60e08d (diff) | |
download | scummvm-rg350-239aea0ff01b1fc3f4a62c35f0362550de2f696c.tar.gz scummvm-rg350-239aea0ff01b1fc3f4a62c35f0362550de2f696c.tar.bz2 scummvm-rg350-239aea0ff01b1fc3f4a62c35f0362550de2f696c.zip |
spelling fixes
svn-id: r11178
Diffstat (limited to 'base')
-rw-r--r-- | base/gameDetector.cpp | 2 | ||||
-rw-r--r-- | base/plugins.cpp | 2 | ||||
-rw-r--r-- | base/plugins.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index cc7f4a4b13..e13d20c868 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -36,7 +36,7 @@ #include "config.h" #endif -// DONT FIXME: DO NOT ORDER ALPHABETICALY, THIS IS ORDERED BY IMPORTANCE/CATEGORY! :) +// DONT FIXME: DO NOT ORDER ALPHABETICALLY, THIS IS ORDERED BY IMPORTANCE/CATEGORY! :) #ifdef __PALM_OS__ static const char USAGE_STRING[] = "NoUsageString"; // save more data segment space #else diff --git a/base/plugins.cpp b/base/plugins.cpp index 7a4d3ffba7..faee80456a 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -268,7 +268,7 @@ bool PluginManager::tryLoadPlugin(Plugin *plugin) { assert(plugin); // Try to load the plugin if (plugin->loadPlugin()) { - // If succesful, add it to the list of known plugins and return. + // If successful, add it to the list of known plugins and return. _plugins.push_back(plugin); return true; } else { diff --git a/base/plugins.h b/base/plugins.h index 038c8a774c..e0b886cb49 100644 --- a/base/plugins.h +++ b/base/plugins.h @@ -118,7 +118,7 @@ public: // Factory functions => no need to include the specific classes // in this header. This serves two purposes: -// 1) Clean seperation from the game modules (scumm, simon) and the generic code +// 1) Clean separation from the game modules (scumm, simon) and the generic code // 2) Faster (compiler doesn't have to parse lengthy header files) #ifndef DISABLE_SCUMM DECLARE_PLUGIN(SCUMM) |