From 5eb729faf654e96ff6f223605af88f6b0f6dad56 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Wed, 23 Jul 2014 23:05:17 -0700 Subject: [PATCH] Remove unused HLE BIOS length constant --- src/gba/hle-bios.c | 1 - src/gba/hle-bios.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/gba/hle-bios.c b/src/gba/hle-bios.c index 6129ef9ed..83de7ee00 100644 --- a/src/gba/hle-bios.c +++ b/src/gba/hle-bios.c @@ -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, diff --git a/src/gba/hle-bios.h b/src/gba/hle-bios.h index e0772c186..b27196761 100644 --- a/src/gba/hle-bios.h +++ b/src/gba/hle-bios.h @@ -3,7 +3,6 @@ #include "common.h" -extern const size_t hleBiosLength; extern const uint8_t hleBios[]; #endif