aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Brown2002-04-05 05:05:42 +0000
committerJames Brown2002-04-05 05:05:42 +0000
commit1fce722b72f1cdec70a59f1719ff2c8ded568a53 (patch)
tree8c0d9e0e16afdd78933ffb003dc9a43fb898bf9a
parentab4d230f57434aa7fe1c33ccfde717dbc9aa5ff7 (diff)
downloadscummvm-rg350-1fce722b72f1cdec70a59f1719ff2c8ded568a53.tar.gz
scummvm-rg350-1fce722b72f1cdec70a59f1719ff2c8ded568a53.tar.bz2
scummvm-rg350-1fce722b72f1cdec70a59f1719ff2c8ded568a53.zip
More cd_mp3 fixes....
svn-id: r3871
-rwxr-xr-xmp3_cd.cpp3
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) {