diff options
| author | Eugene Sandulenko | 2016-07-22 13:38:07 +0300 | 
|---|---|---|
| committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 | 
| commit | a65682a828ff0213b60b983f0957c504ec2d2ec1 (patch) | |
| tree | a486e8b6fd62a6a36e860b879578ab67e51004a8 /gui/ThemeEngine.cpp | |
| parent | 409dd27e76f705941f6f702d55244d24aa06651f (diff) | |
| download | scummvm-rg350-a65682a828ff0213b60b983f0957c504ec2d2ec1.tar.gz scummvm-rg350-a65682a828ff0213b60b983f0957c504ec2d2ec1.tar.bz2 scummvm-rg350-a65682a828ff0213b60b983f0957c504ec2d2ec1.zip | |
GUI: Fix warnings
Diffstat (limited to 'gui/ThemeEngine.cpp')
| -rw-r--r-- | gui/ThemeEngine.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index 78353a05de..ac209d60a2 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -1449,6 +1449,9 @@ void ThemeEngine::drawDialogBackgroundClip(const Common::Rect &r, const Common::  	case kDialogBackgroundDefault:  		queueDDClip(kDDDefaultBackground, r, clip);  		break; +	case kDialogBackgroundNone: +		// no op +		break;  	}  } | 
