GBA BIOS: Silence warning

This commit is contained in:
Jeffrey Pfau 2016-09-17 11:05:31 -07:00
parent 0298f25ea4
commit 572264df0a
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ static void _unHuffman(struct GBA* gba) {
uint32_t dest = cpu->gprs[1];
uint32_t header = cpu->memory.load32(cpu, source, 0);
int remaining = header >> 8;
int bits = header & 0xF;
unsigned bits = header & 0xF;
if (bits == 0) {
mLOG(GBA_BIOS, GAME_ERROR, "Invalid Huffman bits");
bits = 8;