diff options
author | 2018-09-20 11:42:37 +1000 | |
---|---|---|
committer | 2018-09-20 11:42:37 +1000 | |
commit | 2993e850bbe44f8e7992877bd1e5a767f762b1ac (patch) | |
tree | 46c40ac34c66782ce6441ddab959c2461230c4bb /src/devices/sound/spu.cpp | |
parent | 82a3d44cbe6d013a8e878cafc01e4b5caea03b38 (diff) |
(nw) fix lots of inadverently mutable static pointers
Diffstat (limited to 'src/devices/sound/spu.cpp')
-rw-r--r-- | src/devices/sound/spu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/spu.cpp b/src/devices/sound/spu.cpp index 383287b9114..90d8504b439 100644 --- a/src/devices/sound/spu.cpp +++ b/src/devices/sound/spu.cpp @@ -108,7 +108,7 @@ enum srrr_flags srrr_rr_mask=0x1f }; -static const unsigned int /*sound_buffer_size=65536*4,*/ +static unsigned int const /*sound_buffer_size=65536*4,*/ xa_sector_size=(18*28*8)<<1, xa_buffer_sectors=16, cdda_sector_size=2352, @@ -132,7 +132,7 @@ static const unsigned int /*sound_buffer_size=65536*4,*/ // // -static const int filter_coef[5][2]= +static int const filter_coef[5][2]= { { 0,0 }, { 60,0 }, @@ -160,7 +160,7 @@ static const int filter_coef[5][2]= _name##"0-15", \ _name##"16-23" - static const char *spu_register_names[256]= + static char const *const spu_register_names[256]= { _voice_registers(0), _voice_registers(1), |