(cheevos.c) More style nits

This commit is contained in:
twinaphex 2016-02-03 16:09:53 +01:00
parent 3ea92115bf
commit f77f66450e

View File

@ -1824,7 +1824,10 @@ static unsigned cheevos_find_game_id_nes(
return 0;
}
if (header.id[0] != 'N' || header.id[1] != 'E' || header.id[2] != 'S' || header.id[3] != 0x1a)
if ( header.id[0] != 'N'
|| header.id[1] != 'E'
|| header.id[2] != 'S'
|| header.id[3] != 0x1a)
return 0;
if (header.rom_size)