Fix copy & paste error - use bool, not BOOL in cross-platform SDL apps.

svn-id: r3866
This commit is contained in:
James Brown 2002-04-05 04:17:32 +00:00
parent ce4a1eb843
commit a97ab0a7d3
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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
#endif