(svn r2665) Move some variables, which are only used by music_gui.c, there
authortron
Thu, 21 Jul 2005 19:46:58 +0000
changeset 2155 a4aa17b604e3
parent 2154 f86c59e73a16
child 2156 ff4b6b55ce9a
(svn r2665) Move some variables, which are only used by music_gui.c, there
music_gui.c
sound.h
--- a/music_gui.c	Thu Jul 21 19:36:43 2005 +0000
+++ b/music_gui.c	Thu Jul 21 19:46:58 2005 +0000
@@ -7,6 +7,10 @@
 #include "sound.h"
 #include "hal.h"
 
+static byte _music_wnd_cursong;
+static bool _song_is_active;
+static byte _cur_playlist[33];
+
 #define NUM_SONGS_AVAILABLE 22
 
 
--- a/sound.h	Thu Jul 21 19:36:43 2005 +0000
+++ b/sound.h	Thu Jul 21 19:46:58 2005 +0000
@@ -12,9 +12,6 @@
 	char extmidi[80];
 } MusicFileSettings;
 
-VARDEF byte _music_wnd_cursong;
-VARDEF bool _song_is_active;
-VARDEF byte _cur_playlist[33];
 VARDEF MusicFileSettings msf;
 
 bool SoundInitialize(const char *filename);