Skip to content

Commit

Permalink
Merge pull request #1 from Enverex/patch-1
Browse files Browse the repository at this point in the history
Remove RetroArch options for Nag/Info/Game screen
  • Loading branch information
Enverex committed Dec 16, 2016
2 parents 539574e + 5178ed9 commit 07c1196
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions src/osd/libretro/libretro-internal/libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,39 +282,6 @@ video_changed=true;
cheats_enable = true;
}

var.key = option_nag;
var.value = NULL;

if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
{
if (!strcmp(var.value, "disabled"))
hide_nagscreen = false;
if (!strcmp(var.value, "enabled"))
hide_nagscreen = true;
}

var.key = option_info;
var.value = NULL;

if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
{
if (!strcmp(var.value, "disabled"))
hide_gameinfo = false;
if (!strcmp(var.value, "enabled"))
hide_gameinfo = true;
}

var.key = option_warnings;
var.value = NULL;

if (environ_cb(RETRO_ENVIRONMENT_GET_VARIABLE, &var) && var.value)
{
if (!strcmp(var.value, "disabled"))
hide_warnings = false;
if (!strcmp(var.value, "enabled"))
hide_warnings = true;
}

var.key = option_renderer;
var.value = NULL;

Expand Down

0 comments on commit 07c1196

Please sign in to comment.