mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-25 13:42:37 +00:00
Replaced gfxprintf
svn-id: r39190
This commit is contained in:
parent
1e29983d8e
commit
f7e980b56e
@ -36,10 +36,10 @@ namespace Sci {
|
||||
#define GFX_DEBUG
|
||||
|
||||
/* General output macros */
|
||||
# define GFXERROR gfxprintf("GFX Error: %s, L%d:", __FILE__, __LINE__); sciprintf
|
||||
# define GFXWARN gfxprintf("GFX Warning: %s, L%d:", __FILE__, __LINE__); sciprintf
|
||||
# define GFXERROR sciprintf("GFX Error: %s, L%d:", __FILE__, __LINE__); sciprintf
|
||||
# define GFXWARN sciprintf("GFX Warning: %s, L%d:", __FILE__, __LINE__); sciprintf
|
||||
# ifdef GFX_DEBUG
|
||||
# define GFXDEBUG gfxprintf("GFX-debug: %s, L%d:", __FILE__, __LINE__); sciprintf
|
||||
# define GFXDEBUG sciprintf("GFX-debug: %s, L%d:", __FILE__, __LINE__); sciprintf
|
||||
# else /* !GFX_DEBUG */
|
||||
# define GFXDEBUG if (0) printf
|
||||
# endif /* !GFX_DEBUG */
|
||||
|
@ -32,7 +32,6 @@
|
||||
namespace Sci {
|
||||
|
||||
int sciprintf(const char *fmt, ...) GCC_PRINTF(1, 2);
|
||||
#define gfxprintf sciprintf
|
||||
/* Prints a string to the console stack
|
||||
** Parameters: fmt: a printf-style format string
|
||||
** ...: Additional parameters as defined in fmt
|
||||
|
Loading…
x
Reference in New Issue
Block a user