1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-05-13 22:06:58 +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();
}
void CVideoPlayer::nextFrame()
bool CVideoPlayer::nextFrame()
{
if(current)
{
current->nextFrame();
return true;
}
else
return false;
}
void CVideoPlayer::show(int x, int y, SDL_Surface *dst, bool update)