diff options
-rwxr-xr-x | mp3_cd.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mp3_cd.cpp b/mp3_cd.cpp index 1dc6cfd3ac..c119924dfd 100755 --- a/mp3_cd.cpp +++ b/mp3_cd.cpp @@ -20,6 +20,7 @@ #include "stdafx.h" #include "scumm.h" +#include <SDL.H> #ifdef COMPRESSED_SOUND_FILE #include "mp3_cd.h" @@ -106,7 +107,7 @@ bool parse_xing_vbr_tag() while (1) { if (buflen < sizeof(buffer)) { - DWORD bytes; + uint16 bytes; bytes = fread(buffer + buflen, 1, sizeof(buffer) - buflen, _mp3_track); if (bytes <= 0) { |