mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 09:31:14 +00:00
- Added I_Error prototypes to doomerrors.h.
This commit is contained in:
parent
c05e3ebf31
commit
bcbf914f5b
1 changed files with 4 additions and 0 deletions
|
@ -39,6 +39,7 @@
|
|||
#include <stdio.h>
|
||||
#include <exception>
|
||||
#include <stdexcept>
|
||||
#include "doomtype.h"
|
||||
|
||||
#define MAX_ERRORTEXT 1024
|
||||
|
||||
|
@ -103,4 +104,7 @@ public:
|
|||
CFatalError(const char *message) : CDoomError(message) {}
|
||||
};
|
||||
|
||||
void I_Error (const char *error, ...) GCCPRINTF(1,2);
|
||||
void I_FatalError (const char *error, ...) GCCPRINTF(1,2);
|
||||
|
||||
#endif //__ERRORS_H__
|
||||
|
|
Loading…
Reference in a new issue