[Atsoft-commit] CVS: dcgen/gui options.c,1.2,1.3 romlist.c,1.6,1.7
Brought to you by:
atani
|
From: Mike D. <at...@us...> - 2002-02-21 06:44:38
|
Update of /cvsroot/atsoft/dcgen/gui
In directory usw-pr-cvs1:/tmp/cvs-serv10819
Modified Files:
options.c romlist.c
Log Message:
options.c: first part of code cleanup for the new sound module.
romlist.c: added code to ensure that before calling ui_loop the gen_quit
variable has been reset to 0.
Index: options.c
===================================================================
RCS file: /cvsroot/atsoft/dcgen/gui/options.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** options.c 13 Feb 2002 07:57:25 -0000 1.2
--- options.c 21 Feb 2002 06:44:36 -0000 1.3
***************
*** 29,35 ****
{
// SOUND OPTIONS
! {"sound enabled (global)", &sound_on, 1},
! {"PSG sound enabled", &sound_psg, 1},
! {"FM sound enabled", &sound_fm, 1},
// VIDEO OPTIONS
--- 29,33 ----
{
// SOUND OPTIONS
! {"sound enabled", &sound_on, 1},
// VIDEO OPTIONS
Index: romlist.c
===================================================================
RCS file: /cvsroot/atsoft/dcgen/gui/romlist.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** romlist.c 13 Feb 2002 07:57:25 -0000 1.6
--- romlist.c 21 Feb 2002 06:44:36 -0000 1.7
***************
*** 187,190 ****
--- 187,191 ----
else
{
+ gen_quit = 0;
ui_loop();
prep_image("/rd/rommenu.jpg");
|