Replaced some assert macros with SDL_assert.

This commit is contained in:
Ryan C. Gordon 2012-02-07 02:11:15 -05:00
parent 067b1ec8a2
commit df8784cd61
7 changed files with 31 additions and 33 deletions

View file

@ -49,11 +49,12 @@
#include <string.h>
*/
#include "SDL_stdinc.h"
#include "SDL_assert.h"
#ifdef assert
#undef assert
#endif
#define assert(X)
#define assert(X) SDL_assert(X)
#ifdef malloc
#undef malloc
#endif