diff options
author | Eugene Sandulenko | 2015-11-13 08:21:51 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2015-11-13 08:21:51 +0100 |
commit | a47ab5e1d98e6c6be3ae23b11e71911644d2bc78 (patch) | |
tree | d793d47bdc4f608d3890b6ce78c270c16c8cbd0d /engines | |
parent | ca4c10f424209a0bc3558f424a8332d9b277c2fc (diff) | |
download | scummvm-rg350-a47ab5e1d98e6c6be3ae23b11e71911644d2bc78.tar.gz scummvm-rg350-a47ab5e1d98e6c6be3ae23b11e71911644d2bc78.tar.bz2 scummvm-rg350-a47ab5e1d98e6c6be3ae23b11e71911644d2bc78.zip |
SWORD25: Fix typo
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sword25/gfx/graphicengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/gfx/graphicengine.cpp b/engines/sword25/gfx/graphicengine.cpp index 9e075471cb..513d8d345d 100644 --- a/engines/sword25/gfx/graphicengine.cpp +++ b/engines/sword25/gfx/graphicengine.cpp @@ -87,7 +87,7 @@ GraphicEngine::~GraphicEngine() { } bool GraphicEngine::init(int width, int height, int bitDepth, int backbufferCount) { - // Warn when an unsupported bit depth has been selectede. + // Warn when an unsupported bit depth has been selecteed. if (bitDepth != BIT_DEPTH) { warning("Can't use a bit depth of %d (not supported). Falling back to %d.", bitDepth, BIT_DEPTH); _bitDepth = BIT_DEPTH; |