1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-05-31 22:59:54 +02:00

Compile fixes.

This commit is contained in:
DjWarmonger 2011-08-08 14:37:18 +00:00
parent c63df4f07a
commit 4895540f80

View File

@ -465,10 +465,15 @@ void CVideoPlayer::close()
fname.clear(); fname.clear();
} }
void CVideoPlayer::nextFrame() bool CVideoPlayer::nextFrame()
{ {
if(current) if(current)
{
current->nextFrame(); current->nextFrame();
return true;
}
else
return false;
} }
void CVideoPlayer::show(int x, int y, SDL_Surface *dst, bool update) void CVideoPlayer::show(int x, int y, SDL_Surface *dst, bool update)