Skip to content

Commit

Permalink
Merge pull request #66 from retro-wertz/libretro
Browse files Browse the repository at this point in the history
Automatically hide some core options depending on rom image type
  • Loading branch information
hizzlekizzle committed Jul 29, 2019
2 parents c3edd6d + d898288 commit 408cab7
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/libretro/libretro.cpp
Expand Up @@ -1204,6 +1204,41 @@ static void update_variables(bool startup)
int val = (!strcmp(var.value, "enabled")) ? 1 : 0;
set_gbColorCorrection(val);
}

// Hide some core options depending on rom image type
if (startup) {
unsigned i;
struct retro_core_option_display option_display;
char gb_options[5][25] = {
"vbam_palettes",
"vbam_gbHardware",
"vbam_allowcolorizerhack",
"vbam_showborders",
"vbam_gbcoloroption"
};
char gba_options[4][22] = {
"vbam_solarsensor",
"vbam_sound_5",
"vbam_sound_6",
"vbam_gyro_sensitivity"
};

// Show or hide GB/GBC only options
option_display.visible = (type == IMAGE_GB) ? 1 : 0;
for (i = 0; i < 5; i++)
{
option_display.key = gb_options[i];
environ_cb(RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY, &option_display);
}

// Show or hide GBA only options
option_display.visible = (type == IMAGE_GBA) ? 1 : 0;
for (i = 0; i < 4; i++)
{
option_display.key = gba_options[i];
environ_cb(RETRO_ENVIRONMENT_SET_CORE_OPTIONS_DISPLAY, &option_display);
}
}
}

// System analog stick range is -0x7fff to 0x7fff
Expand Down

0 comments on commit 408cab7

Please sign in to comment.