mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
moved declaration of error/warning/debug from engine.h to util.h
svn-id: r10149
This commit is contained in:
parent
77ae18255b
commit
110152ddcf
@ -22,7 +22,6 @@
|
||||
#include "sdl-common.h"
|
||||
#include "sound/mididrv.h"
|
||||
#include "common/scaler.h"
|
||||
#include "common/engine.h" // Only #included for error() and warning()
|
||||
#include "common/util.h"
|
||||
|
||||
#include "scummvm.xpm"
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include "sdl-common.h"
|
||||
#include "common/scaler.h"
|
||||
#include "common/util.h"
|
||||
#include "common/engine.h" // Only #included for error() and warning()
|
||||
|
||||
class OSystem_SDL : public OSystem_SDL_Common {
|
||||
public:
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include "sdl-common.h"
|
||||
#include "common/scaler.h"
|
||||
#include "common/util.h"
|
||||
#include "common/engine.h" // Only #included for error() and warning()
|
||||
|
||||
#ifdef WIN32
|
||||
int glColorTable(int, int, int, int, int, void *) { return 0; }
|
||||
|
@ -81,16 +81,5 @@ public:
|
||||
|
||||
extern Engine *g_engine;
|
||||
|
||||
#if defined(__GNUC__)
|
||||
void CDECL error(const char *s, ...) NORETURN;
|
||||
#else
|
||||
void CDECL NORETURN error(const char *s, ...);
|
||||
#endif
|
||||
|
||||
void CDECL warning(const char *s, ...);
|
||||
|
||||
void CDECL debug(int level, const char *s, ...);
|
||||
void checkHeap();
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -21,7 +21,6 @@
|
||||
|
||||
#include "common/file.h"
|
||||
#include "common/util.h"
|
||||
#include "common/engine.h" // For debug/warning/error
|
||||
|
||||
FILE *File::fopenNoCase(const char *filename, const char *directory, const char *mode) {
|
||||
FILE *file;
|
||||
|
@ -21,7 +21,6 @@
|
||||
|
||||
#include "common/savefile.h"
|
||||
#include "common/util.h"
|
||||
#include "common/engine.h" // For debug/warning/error
|
||||
|
||||
uint32 SaveFile::read(void *ptr, uint32 size)
|
||||
{
|
||||
|
@ -89,4 +89,17 @@ public:
|
||||
};
|
||||
|
||||
|
||||
|
||||
#if defined(__GNUC__)
|
||||
void CDECL error(const char *s, ...) NORETURN;
|
||||
#else
|
||||
void CDECL NORETURN error(const char *s, ...);
|
||||
#endif
|
||||
|
||||
void CDECL warning(const char *s, ...);
|
||||
|
||||
void CDECL debug(int level, const char *s, ...);
|
||||
void checkHeap();
|
||||
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user