summaryrefslogtreecommitdiff
path: root/apps/codecs/libgme/vgm_emu.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libgme/vgm_emu.h')
-rw-r--r--apps/codecs/libgme/vgm_emu.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/codecs/libgme/vgm_emu.h b/apps/codecs/libgme/vgm_emu.h
index bc04086e9d..773b850a09 100644
--- a/apps/codecs/libgme/vgm_emu.h
+++ b/apps/codecs/libgme/vgm_emu.h
@@ -12,7 +12,6 @@
12#include "ym2612_emu.h" 12#include "ym2612_emu.h"
13#include "sms_apu.h" 13#include "sms_apu.h"
14 14
15typedef short sample_t;
16typedef int vgm_time_t; 15typedef int vgm_time_t;
17typedef int fm_time_t; 16typedef int fm_time_t;
18 17
@@ -85,7 +84,7 @@ struct Vgm_Emu {
85 int dac_amp; 84 int dac_amp;
86 int dac_disabled; // -1 if disabled 85 int dac_disabled; // -1 if disabled
87 86
88 struct Blip_Buffer* blip_buf; 87 struct Blip_Buffer blip_buf;
89 88
90 // general 89 // general
91 long clock_rate_; 90 long clock_rate_;
@@ -124,10 +123,7 @@ struct Vgm_Emu {
124 123
125 struct Sms_Apu psg; 124 struct Sms_Apu psg;
126 struct Blip_Synth pcm; 125 struct Blip_Synth pcm;
127 struct Stereo_Buffer stereo_buf;
128
129 struct Resampler resampler; 126 struct Resampler resampler;
130
131 struct Stereo_Buffer buf; 127 struct Stereo_Buffer buf;
132}; 128};
133 129