aboutsummaryrefslogtreecommitdiff
path: root/source/soundux.h
diff options
context:
space:
mode:
authorNebuleon Fumika2013-01-11 23:21:41 -0500
committerNebuleon Fumika2013-01-11 23:21:41 -0500
commit575e93abdcf6ca037f72943dca22d04861215e42 (patch)
tree0eef8db62f89853928179076094cfe6ac3707915 /source/soundux.h
parente0259e54c2413c9fd24713e4abde4a49c1f329dc (diff)
downloadsnes9x2005-575e93abdcf6ca037f72943dca22d04861215e42.tar.gz
snes9x2005-575e93abdcf6ca037f72943dca22d04861215e42.tar.bz2
snes9x2005-575e93abdcf6ca037f72943dca22d04861215e42.zip
Reduce memory access in noise generation.
Diffstat (limited to 'source/soundux.h')
-rw-r--r--source/soundux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/soundux.h b/source/soundux.h
index a1417bd..b67dc2a 100644
--- a/source/soundux.h
+++ b/source/soundux.h
@@ -122,7 +122,8 @@ typedef struct {
int sound_switch;
int playback_rate;
int buffer_size;
- int noise_gen;
+ // int noise_gen;
+ // Moved to soundux.cpp's noise_gen; this doesn't need volatility! [Neb]
bool8 mute_sound;
#ifndef FOREVER_STEREO
int stereo;