Added a bunch of parameters (including one to specify custom ROM path), fixed a warnings, removed excess commented out code from video/vid_voodoo.c, and made Makefile.mingw quiet again.

This commit is contained in:
OBattler
2021-09-02 20:15:46 +02:00
parent 6c26a99841
commit 84f4b8cac7
6 changed files with 114 additions and 38 deletions

View File

@@ -2578,12 +2578,12 @@ save_storage_controllers(void)
else
config_set_int(cat, "cassette_enabled", cassette_enable);
if (cassette_fname == NULL)
if (strlen(cassette_fname) == 0)
config_delete_var(cat, "cassette_file");
else
config_set_string(cat, "cassette_file", cassette_fname);
if (cassette_mode == NULL)
if (strlen(cassette_mode) == 0)
config_delete_var(cat, "cassette_mode");
else
config_set_string(cat, "cassette_mode", cassette_mode);