diff options
| author | Travis Howell | 2005-04-30 04:05:02 +0000 | 
|---|---|---|
| committer | Travis Howell | 2005-04-30 04:05:02 +0000 | 
| commit | a08f1b8c692dadf7545c48d8b678b0c5a4259402 (patch) | |
| tree | ba24dcf45c6663a467c45d9f97f7aa268b68de31 | |
| parent | c20ee1e634fcf153494fb93d4932669957abe38d (diff) | |
| download | scummvm-rg350-a08f1b8c692dadf7545c48d8b678b0c5a4259402.tar.gz scummvm-rg350-a08f1b8c692dadf7545c48d8b678b0c5a4259402.tar.bz2 scummvm-rg350-a08f1b8c692dadf7545c48d8b678b0c5a4259402.zip  | |
Add a few case stubs for moondemo.
svn-id: r17868
| -rw-r--r-- | scumm/wiz_he.cpp | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp index 5177747cc9..dffc6e45bd 100644 --- a/scumm/wiz_he.cpp +++ b/scumm/wiz_he.cpp @@ -1027,6 +1027,10 @@ uint8 *ScummEngine_v72he::drawWizImage(int resNum, int state, int x1, int y1, in  			// RAW 16 bits in 555 format  			warning("drawWizImage: Unhandled wiz compression type %d", comp);  			break; +		case 5: +			// Used in Moonbase Commander +			warning("drawWizImage: Unhandled wiz compression type %d", comp); +			break;  		default:  			error("drawWizImage: Unhandled wiz compression type %d", comp);  		} @@ -1799,6 +1803,11 @@ uint8 ScummEngine_v90he::getWizPixelColor(int resNum, int state, int x, int y, i  	case 1:  		color = _wiz.getWizPixelColor(wizd, x, y, w, h, VAR(VAR_WIZ_TCOLOR));  		break; +	case 5: +		// Used in Moonbase Commander +		color = 1; +		warning("getWizPixelColor: Unhandled wiz compression type %d", c); +		break;  	default:  		error("getWizPixelColor: Unhandled wiz compression type %d", c);  		break;  | 
