Fixing U16 and U8 Parameter Types

It seems like most of the types are moving to fixed width integer types and this file wasn't fully converted.
This commit is contained in:
MrJman006 2016-07-21 22:01:49 -04:00 committed by GitHub
parent ba3083b538
commit 9dd9fd5d26
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ class SoundSDL : public SoundDriver
virtual void pause();
virtual void reset();
virtual void resume();
virtual void write(u16 *finalWave, int length);
virtual void write(uint16_t *finalWave, int length);
private:
RingBuffer<uint16_t> _rbuf;
@ -50,7 +50,7 @@ class SoundSDL : public SoundDriver
// Defines what delay in seconds we keep in the sound buffer
static const float _delay;
static void soundCallback(void *data, u8 *stream, int length);
static void soundCallback(void *data, uint8_t *stream, int length);
virtual void read(uint16_t *stream, int length);
};