diff options
| author | Travis Howell | 2005-08-14 02:04:26 +0000 | 
|---|---|---|
| committer | Travis Howell | 2005-08-14 02:04:26 +0000 | 
| commit | 18febcb94d9312d9c025e647168364e4ed9ff53a (patch) | |
| tree | 92669619a7d7507f338febb40ea3686f8deee8db /scumm/palette.cpp | |
| parent | a820400f8c134a9119b5a2c5b68d614345322f45 (diff) | |
| download | scummvm-rg350-18febcb94d9312d9c025e647168364e4ed9ff53a.tar.gz scummvm-rg350-18febcb94d9312d9c025e647168364e4ed9ff53a.tar.bz2 scummvm-rg350-18febcb94d9312d9c025e647168364e4ed9ff53a.zip  | |
Replace warnings with debug, errors or printfs:
-To catch any missing cases/functions used.
-To prevent users reporting warnings as bugs
svn-id: r18682
Diffstat (limited to 'scumm/palette.cpp')
| -rw-r--r-- | scumm/palette.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/palette.cpp b/scumm/palette.cpp index 8827add97e..21d3d0a106 100644 --- a/scumm/palette.cpp +++ b/scumm/palette.cpp @@ -440,7 +440,7 @@ void ScummEngine::palManipulateInit(int resID, int start, int end, int time) {  	string2 = getStringAddress(resID + 1);  	string3 = getStringAddress(resID + 2);  	if (!string1 || !string2 || !string3) { -		warning("palManipulateInit(%d,%d,%d,%d): Cannot obtain string resources %d, %d and %d", +		error("palManipulateInit(%d,%d,%d,%d): Cannot obtain string resources %d, %d and %d",  				resID, start, end, time, resID, resID + 1, resID + 2);  		return;  	}  | 
