This commit is contained in:
twinaphex 2020-02-10 13:12:26 +01:00
parent 880391d0c5
commit c142ee19ba
1 changed files with 30 additions and 29 deletions

View File

@ -3841,9 +3841,10 @@ static bool command_get_config_param(const char* arg)
{
char reply[4096] = {0};
const char* value = "unsupported";
settings_t* settings = config_get_ptr();
settings_t* settings = configuration_settings;
if (!strcmp(arg, "video_fullscreen")) {
if (!strcmp(arg, "video_fullscreen"))
{
if(configuration_settings->bools.video_fullscreen)
value = "true";
else