svn-id: r13069
This commit is contained in:
Max Horn 2004-02-27 15:52:23 +00:00
parent b941740b72
commit 751435d54f
3 changed files with 4 additions and 4 deletions

View file

@ -51,7 +51,7 @@ void InitScalers(uint32 BitFormat) {
} else if (BitFormat == 555) {
dotmatrix = dotmatrix_555;
} else {
error("Unknown bit format %d\n", BitFormat);
error("Unknown bit format %d", BitFormat);
}
gBitFormat = BitFormat;
@ -291,4 +291,3 @@ void DotMatrix(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPi
q += nextlineDst << 1;
}
}

View file

@ -21,6 +21,9 @@
#ifndef COMMON_SCALER_H
#define COMMON_SCALER_H
#include "common/stdafx.h"
#include "common/scummsys.h"
extern void InitScalers(uint32 BitFormat);
typedef void ScalerProc(const uint8 *srcPtr, uint32 srcPitch,

View file

@ -46,8 +46,6 @@ static OSystem *createSystem() {
return OSystem_MorphOS_create(gfx_mode, ConfMan.getBool("fullscreen"));
#elif defined(_WIN32_WCE)
return OSystem_WINCE3_create();
#elif defined(MACOS_CARBON)
return OSystem_MAC_create(gfx_mode, ConfMan.getBool("fullscreen"));
#elif defined(__GP32__) // ph0x
return OSystem_GP32_create(GFX_NORMAL, true);
#elif defined(__PALM_OS__) //chrilith