Remove unused HLE BIOS length constant
Jeffrey Pfau jeffrey@endrift.com
Wed, 23 Jul 2014 23:05:17 -0700
2 files changed,
0 insertions(+),
2 deletions(-)
M
src/gba/hle-bios.c
→
src/gba/hle-bios.c
@@ -2,7 +2,6 @@ #include "hle-bios.h"
#include "gba-memory.h" -const size_t hleBiosLength = 500; const uint8_t hleBios[SIZE_BIOS] = { 0x06, 0x00, 0x00, 0xea, 0xfe, 0xff, 0xff, 0xea, 0x05, 0x00, 0x00, 0xea, 0xfe, 0xff, 0xff, 0xea, 0xfe, 0xff, 0xff, 0xea, 0x00, 0x00, 0xa0, 0xe1,
M
src/gba/hle-bios.h
→
src/gba/hle-bios.h
@@ -3,7 +3,6 @@ #define HLE_BIOS_H
#include "common.h" -extern const size_t hleBiosLength; extern const uint8_t hleBios[]; #endif