Remove unused HLE BIOS length constant

This commit is contained in:
Jeffrey Pfau 2014-07-23 23:05:17 -07:00
parent 6c9ee4c212
commit 5eb729faf6
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@
#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,

View File

@ -3,7 +3,6 @@
#include "common.h"
extern const size_t hleBiosLength;
extern const uint8_t hleBios[];
#endif