diff options
| author | Max Horn | 2008-10-11 22:18:15 +0000 | 
|---|---|---|
| committer | Max Horn | 2008-10-11 22:18:15 +0000 | 
| commit | 3d41300895447d5c55b1eaa5aa8580ead1708758 (patch) | |
| tree | 05e13d94d29710df789d9a59fad258c605626afa /gui/ThemeEngine.cpp | |
| parent | c39175d2ec482c745d04fe56744eaa01df2bae8f (diff) | |
| download | scummvm-rg350-3d41300895447d5c55b1eaa5aa8580ead1708758.tar.gz scummvm-rg350-3d41300895447d5c55b1eaa5aa8580ead1708758.tar.bz2 scummvm-rg350-3d41300895447d5c55b1eaa5aa8580ead1708758.zip | |
Fixed yet another typo
svn-id: r34775
Diffstat (limited to 'gui/ThemeEngine.cpp')
| -rw-r--r-- | gui/ThemeEngine.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index 98b3aa20fa..82eba7d1df 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -472,12 +472,12 @@ bool ThemeEngine::loadTheme(Common::String fileName) {  	if (fileName == "builtin") {  		if (!loadDefaultXML()) -			error("Could not load default embeded theme"); +			error("Could not load default embedded theme");  	} else if (!loadThemeXML(fileName)) {  		warning("Could not parse custom theme '%s'. Falling back to default theme", fileName.c_str()); -		if (!loadDefaultXML()) // if we can't load the embeded theme, this is a complete failure -			error("Could not load default embeded theme"); +		if (!loadDefaultXML()) // if we can't load the embedded theme, this is a complete failure +			error("Could not load default embedded theme");  	}  	for (int i = 0; i < kDrawDataMAX; ++i) { | 
