const fix

This commit is contained in:
Glenn Maynard
2003-03-11 18:40:42 +00:00
parent 123cd35e17
commit 2bf152c2c2
2 changed files with 2 additions and 2 deletions
@@ -218,7 +218,7 @@ void MovieTexture_DShow::Create()
RageException::Throw( "Could not run the DirectShow graph." );
}
void MovieTexture_DShow::NewData(char *data)
void MovieTexture_DShow::NewData(const char *data)
{
LockMutex L(buffer_mutex);
buffer_changed = true;
@@ -60,7 +60,7 @@ public:
virtual bool IsPlaying() const;
void SetLooping(bool looping=true) { m_bLoop = looping; }
void NewData(char *buffer);
void NewData(const char *buffer);
protected:
char *buffer;