SDL: Fix Windows build

This commit is contained in:
Jeffrey Pfau 2015-04-21 02:27:54 -07:00
parent d0a332ffd4
commit 657bcec879
2 changed files with 4 additions and 4 deletions

View File

@ -10,10 +10,6 @@
#include "gba/memory.h" #include "gba/memory.h"
#include "isa-inlines.h" #include "isa-inlines.h"
#ifndef M_PI
#define M_PI 3.141592654f
#endif
const uint32_t GBA_BIOS_CHECKSUM = 0xBAAE187F; const uint32_t GBA_BIOS_CHECKSUM = 0xBAAE187F;
const uint32_t GBA_DS_BIOS_CHECKSUM = 0xBAAE1880; const uint32_t GBA_DS_BIOS_CHECKSUM = 0xBAAE1880;

View File

@ -23,4 +23,8 @@
#define UNUSED(V) (void)(V) #define UNUSED(V) (void)(V)
#ifndef M_PI
#define M_PI 3.141592654f
#endif
#endif #endif