TONY: Implemented font.cpp methods

This commit is contained in:
Paul Gilbert 2012-05-02 23:35:32 +10:00
parent bc2b944986
commit 4300db9ee4
4 changed files with 7 additions and 1 deletions

View File

@ -288,7 +288,7 @@ protected:
public:
virtual ~RMGfxSourceBufferPal();
virtual int Init(byte *buf, int dimx, int dimy, bool bLoadPalette = false);
virtual int Init(const byte *buf, int dimx, int dimy, bool bLoadPalette = false);
virtual void Init(RMDataStream& ds, int dimx, int dimy, bool bLoadPalette = false);
int LoadPaletteWA(uint32 resID, bool bSwapped = false);

View File

@ -3,6 +3,7 @@ MODULE := engines/tony
MODULE_OBJS := \
custom.o \
detection.o \
font.o \
game.o \
gfxcore.o \
gfxengine.o \

View File

@ -97,6 +97,9 @@ void SetEvent(HANDLE hEvent) {
void ResetEvent(HANDLE hEvent) {
}
void PulseEvent(HANDLE hEvent) {
}
uint16 GetAsyncKeyState(Common::KeyCode kc) {
return 0;
}

View File

@ -106,6 +106,8 @@ extern void SetEvent(HANDLE hEvent);
extern void ResetEvent(HANDLE hEvent);
extern void PulseEvent(HANDLE hEvent);
extern uint16 GetAsyncKeyState(Common::KeyCode kc);
} // end of namespace MPAL