diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-11-28 22:45:46 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-11-28 22:45:46 -0800 |
commit | aaca957565a13e9f2c6ab5ae085d7c8fb6c0fa85 (patch) | |
tree | 313d2bcdb58f3e9bf474502961169cb4a01bb235 /psg.c | |
parent | b371dfde279ea1b67dc4a3611c268ca6bf2a6a9a (diff) |
Clean up symbol visiblity and delete a ltitle bit of dead code
Diffstat (limited to 'psg.c')
-rw-r--r-- | psg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ void psg_write(psg_context * context, uint8_t value) #define PSG_VOL_DIV 14 //table shamelessly swiped from PSG doc from smspower.org -int16_t volume_table[16] = { +static int16_t volume_table[16] = { 32767/PSG_VOL_DIV, 26028/PSG_VOL_DIV, 20675/PSG_VOL_DIV, 16422/PSG_VOL_DIV, 13045/PSG_VOL_DIV, 10362/PSG_VOL_DIV, 8231/PSG_VOL_DIV, 6568/PSG_VOL_DIV, 5193/PSG_VOL_DIV, 4125/PSG_VOL_DIV, 3277/PSG_VOL_DIV, 2603/PSG_VOL_DIV, 2067/PSG_VOL_DIV, 1642/PSG_VOL_DIV, 1304/PSG_VOL_DIV, 0 |