diff --git a/libretro-common/include/file/config_file.h b/libretro-common/include/file/config_file.h index d56bdd793d..4f224c8940 100644 --- a/libretro-common/include/file/config_file.h +++ b/libretro-common/include/file/config_file.h @@ -116,13 +116,12 @@ bool config_entry_exists(config_file_t *conf, const char *entry); struct config_entry_list { - /* If we got this from an #include, - * do not allow overwrite. */ - bool readonly; - char *key; char *value; struct config_entry_list *next; + /* If we got this from an #include, + * do not allow overwrite. */ + bool readonly; };