mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 23:43:10 +00:00
cleanup
svn-id: r10484
This commit is contained in:
parent
8284aa2047
commit
3cdf7abe68
@ -220,6 +220,10 @@ extern "C" {
|
||||
// Key buffer size
|
||||
#define MAX_KEY_BUFFER 32
|
||||
|
||||
// Maximum scaled size of a sprite
|
||||
#define SCALE_MAXWIDTH 512
|
||||
#define SCALE_MAXHEIGHT 512
|
||||
|
||||
//
|
||||
// Structure definitions
|
||||
// ---------------------
|
||||
@ -412,8 +416,6 @@ extern uint32 SVM_timeGetTime(void);
|
||||
extern void SVM_SetFileAttributes(char *file, uint32 atrib);
|
||||
extern void SVM_DeleteFile(char *file);
|
||||
extern int32 SVM_GetVolumeInformation(char *cdPath, char *sCDName, uint32 maxPath, uint8 *, uint32 *dwMaxCompLength, uint32 *dwFSFlags, uint8 *, uint32 a);
|
||||
extern void scumm_mkdir(const char *pathname);
|
||||
extern void SVM_GetModuleFileName(void *module, char *destStr, uint32 maxLen);
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
extern int16 screenWide; // Width of the screen display
|
||||
|
@ -38,13 +38,3 @@ int32 SVM_GetVolumeInformation(char *cdPath, char *sCDName, uint32 maxPath, uint
|
||||
strcpy(sCDName, CD1_LABEL);
|
||||
return 1;
|
||||
}
|
||||
|
||||
// FIXME wrap different platform specific mkdir calls and actually do something
|
||||
void scumm_mkdir(const char *pathname) {
|
||||
warning("stub scumm_mkdir %s", pathname);
|
||||
}
|
||||
|
||||
void SVM_GetModuleFileName(void *module, char *destStr, uint32 maxLen) {
|
||||
warning("stub GetModuleFileName");
|
||||
}
|
||||
|
||||
|
@ -122,9 +122,6 @@ void BlitBlockSurface(BlockSurface *s, ScummVM::Rect *r, ScummVM::Rect *clip_rec
|
||||
SetNeedRedraw();
|
||||
}
|
||||
|
||||
#define SCALE_MAXWIDTH 512
|
||||
#define SCALE_MAXHEIGHT 512
|
||||
|
||||
static uint16 xScale[SCALE_MAXWIDTH];
|
||||
static uint16 yScale[SCALE_MAXHEIGHT];
|
||||
|
||||
|
@ -370,9 +370,6 @@ void DeleteSurface(uint8 *surface) {
|
||||
#define SCALE_MAXWIDTH 512
|
||||
#define SCALE_MAXHEIGHT 512
|
||||
|
||||
static uint16 xScale[SCALE_MAXWIDTH];
|
||||
static uint16 yScale[SCALE_MAXHEIGHT];
|
||||
|
||||
/**
|
||||
* Draws a sprite onto the screen. The type of the sprite can be a combination
|
||||
* of the following flags, some of which are mutually exclusive:
|
||||
|
Loading…
x
Reference in New Issue
Block a user