mirror of https://github.com/mgba-emu/mgba.git
SDL: Fix Windows build
This commit is contained in:
parent
d0a332ffd4
commit
657bcec879
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue