Disc activity indicator can now be enabled/disabled.
This commit is contained in:
parent
e87a362f1f
commit
6f7ca2ccb0
8 changed files with 19 additions and 4 deletions
2
src/pc.c
2
src/pc.c
|
|
@ -640,6 +640,7 @@ void loadconfig(char *fn)
|
|||
|
||||
vid_resize = config_get_int(NULL, "vid_resize", 0);
|
||||
video_force_aspect_ration = config_get_int(NULL, "vid_force_aspect_ratio", 0);
|
||||
vid_disc_indicator = config_get_int(NULL, "vid_disc_indicator", 1);
|
||||
vid_api = config_get_int(NULL, "vid_api", 0);
|
||||
video_fullscreen_scale = config_get_int(NULL, "video_fullscreen_scale", 0);
|
||||
video_fullscreen_first = config_get_int(NULL, "video_fullscreen_first", 1);
|
||||
|
|
@ -743,6 +744,7 @@ void saveconfig()
|
|||
config_set_string(NULL, "cdrom_path", iso_path);
|
||||
config_set_int(NULL, "vid_resize", vid_resize);
|
||||
config_set_int(NULL, "vid_force_aspect_ratio", video_force_aspect_ration);
|
||||
config_set_int(NULL, "vid_disc_indicator", vid_disc_indicator);
|
||||
config_set_int(NULL, "vid_api", vid_api);
|
||||
config_set_int(NULL, "video_fullscreen_scale", video_fullscreen_scale);
|
||||
config_set_int(NULL, "video_fullscreen_first", video_fullscreen_first);
|
||||
|
|
|
|||
Loading…
Reference in a new issue