diff options
-rw-r--r-- | src/heretic/r_main.c | 2 | ||||
-rw-r--r-- | src/heretic/s_sound.c | 11 |
2 files changed, 4 insertions, 9 deletions
diff --git a/src/heretic/r_main.c b/src/heretic/r_main.c index c20d5d03..975dce0c 100644 --- a/src/heretic/r_main.c +++ b/src/heretic/r_main.c @@ -662,7 +662,7 @@ void R_ExecuteSetViewSize(void) */ int detailLevel; -int screenblocks; +int screenblocks = 10; void R_Init(void) { diff --git a/src/heretic/s_sound.c b/src/heretic/s_sound.c index c38c5938..ae40269b 100644 --- a/src/heretic/s_sound.c +++ b/src/heretic/s_sound.c @@ -55,14 +55,9 @@ byte *soundCurve; extern sfxinfo_t S_sfx[]; extern musicinfo_t S_music[]; -extern int snd_DesiredMusicDevice; -extern int snd_DesiredSfxDevice; -int snd_MaxVolume; -int snd_MusicVolume; -int snd_Channels; - -extern int startepisode; -extern int startmap; +int snd_MaxVolume = 10; +int snd_MusicVolume = 10; +int snd_Channels = 16; int AmbChan; |