aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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