From ad05eb6d0a02a8fac351eb75bd94c5675a9b305f Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sat, 10 Apr 2021 16:15:40 +0300 Subject: [PATCH] GCC build fix --- Core/gb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/gb.c b/Core/gb.c index fe75b265..2db749ae 100644 --- a/Core/gb.c +++ b/Core/gb.c @@ -347,7 +347,7 @@ int GB_load_gbs(GB_gameboy_t *gb, const char *path, GB_gbs_info_t *info) return errno; } fread(&gb->gbs_header, sizeof(gb->gbs_header), 1, f); - if (gb->gbs_header.magic != htonl('GBS\x01') || + if (gb->gbs_header.magic != BE32('GBS\x01') || LE16(gb->gbs_header.load_address) < 0x400 || LE16(gb->gbs_header.load_address) >= 0x8000) { GB_log(gb, "Not a valid GBS file: %s.\n", strerror(errno));