Proper constness
git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@6055 4a71c877-e1ca-e34f-864e-861f7616d084master
parent
8ab4875818
commit
4a63c3106f
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue