Click to See Complete Forum and Search --> : ScummVM


Charred_Phoenix
08-08-2003, 02:36 AM
When compilling ScummVM, I get these errors:

sound/mixer.h:89: error: type specifier omitted for parameter `mad_timer_t'
sound/mixer.h:89: error: parse error before `)' token
make: *** [scumm/actor.o] Error 1

line 89 is this:
int playMP3CDTrack(PlayingSoundHandle *handle, File *file, mad_timer_t duration);

My guess is the problem is that I'm missing a library or something that defins the mad_timer_t data type. Anyone know how I can fix this?

hard candy
08-08-2003, 07:23 PM
No solution, but what and where is the ScunVM?

hard candy
08-08-2003, 07:24 PM
I found it-Ileft out a "m".

mister_math
08-08-2003, 07:55 PM
While I've never had that exact error message, I've had similar ones. In my case I have to install the libmad-devel package (RPM in my case) which cleared up those types of problems.

So if you're running an RPM based distro, just install the libmad-devel package and see if that helps.

Charred_Phoenix
08-09-2003, 02:30 AM
That fixed it, thanks :)