Proper constness

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@6055 4a71c877-e1ca-e34f-864e-861f7616d084
master
Giel van Schijndel 2008-09-20 14:17:06 +00:00
parent 8ab4875818
commit 4a63c3106f
2 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ static BOOL seq_StartFullScreenVideo(const char* videoName, const char* audioNam
/***************************************************************************/
/* Renders a video sequence specified by filename to a buffer*/
BOOL seq_RenderVideoToBuffer( iSurface *pSurface, char *sequenceName, int time, int seqCommand)
BOOL seq_RenderVideoToBuffer(iSurface* pSurface, const char* sequenceName, int time, int seqCommand)
{
if (seqCommand == SEQUENCE_KILL)
{

View File

@ -55,7 +55,7 @@
*/
/***************************************************************************/
//buffer render
extern BOOL seq_RenderVideoToBuffer(iSurface *pSurface, char* sequenceName, int time, int seqCommand);
extern BOOL seq_RenderVideoToBuffer(iSurface *pSurface, const char* sequenceName, int time, int seqCommand);
extern BOOL seq_UpdateFullScreenVideo(int *bClear);