Fix indentation.

This commit is contained in:
Themaister 2013-01-14 09:46:51 +01:00
parent c9bd9586e8
commit 35f6989dba

View File

@ -198,10 +198,13 @@ bool retro_load_game(const struct retro_game_info *info)
unsigned rgb32 = 0;
for (unsigned palnum = 0; palnum < 3; ++palnum)
for (unsigned colornum = 0; colornum < 4; ++colornum) {
{
for (unsigned colornum = 0; colornum < 4; ++colornum)
{
rgb32 = gbcToRgb32(gbc_bios_palette[palnum * 4 + colornum]);
gb.setDmgPaletteColor(palnum, colornum, rgb32);
}
}
const char *system_directory_c = NULL;
environ_cb(RETRO_ENVIRONMENT_GET_SYSTEM_DIRECTORY, &system_directory_c);
@ -258,6 +261,7 @@ bool retro_load_game(const struct retro_game_info *info)
continue; // current line does not contain a palette color definition, so go to next line
}
// Supposed to be a typo here.
if (startswith(line, "slectedScheme="))
continue;