aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Brown2002-04-05 04:17:32 +0000
committerJames Brown2002-04-05 04:17:32 +0000
commita97ab0a7d3a58d0fd1e8b992c828f604c31b7cd5 (patch)
treeed8a0a2d2b2428682df8d6eedbe8e6cd9c2972d2
parentce4a1eb8433074fcd599e59d7f7fc01c7922b08a (diff)
downloadscummvm-rg350-a97ab0a7d3a58d0fd1e8b992c828f604c31b7cd5.tar.gz
scummvm-rg350-a97ab0a7d3a58d0fd1e8b992c828f604c31b7cd5.tar.bz2
scummvm-rg350-a97ab0a7d3a58d0fd1e8b992c828f604c31b7cd5.zip
Fix copy & paste error - use bool, not BOOL in cross-platform SDL apps.
svn-id: r3866
-rwxr-xr-xmp3_cd.cpp4
-rwxr-xr-xmp3_cd.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/mp3_cd.cpp b/mp3_cd.cpp
index bb6a3d2d7e..5feda88b11 100755
--- a/mp3_cd.cpp
+++ b/mp3_cd.cpp
@@ -89,7 +89,7 @@ int xing_parse(struct xing *xing, struct mad_bitptr ptr, unsigned int bitlen)
// Borrowed from Winamp plugin in_mad.c
-BOOL parse_xing_vbr_tag()
+bool parse_xing_vbr_tag()
{
struct mad_stream stream;
struct mad_frame frame;
@@ -197,7 +197,7 @@ uint32 calc_cd_file_offset(int start_frame) {
return offset;
}
-BOOL mp3_cd_play(Scumm *s, int track, int num_loops, int start_frame, int end_frame) {
+bool mp3_cd_play(Scumm *s, int track, int num_loops, int start_frame, int end_frame) {
// See if we are already playing this track, else try to open it
diff --git a/mp3_cd.h b/mp3_cd.h
index 52910eb335..65c838fccf 100755
--- a/mp3_cd.h
+++ b/mp3_cd.h
@@ -40,6 +40,6 @@ enum {
XING_SCALE = 0x00000008L
};
-BOOL mp3_cd_play(Scumm *s, int track, int num_loops, int start_frame, int end_frame);
+bool mp3_cd_play(Scumm *s, int track, int num_loops, int start_frame, int end_frame);
-#endif \ No newline at end of file
+#endif