From 263a842d8c7ac3a04282ab50a13232bd105bb7dc Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Wed, 2 Mar 2011 19:02:52 -0500 Subject: [PATCH] Yeah, I've done this with #macros myself before. --- src/arch/MovieTexture/MovieTexture_FFMpeg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/MovieTexture/MovieTexture_FFMpeg.cpp b/src/arch/MovieTexture/MovieTexture_FFMpeg.cpp index e7cf2077ad..6d8a89e504 100644 --- a/src/arch/MovieTexture/MovieTexture_FFMpeg.cpp +++ b/src/arch/MovieTexture/MovieTexture_FFMpeg.cpp @@ -686,9 +686,9 @@ int URLRageFile_read( avcodec::URLContext *h, unsigned char *buf, int size ) } #if defined(MACOSX) - int URLRageFile_write( avcodec::URLContext *h, unsigned char *buf, int size ) + int URLRageFile_write( avcodec::URLContext *h, unsigned char *buf, int size ); #else - int URLRageFile_write( avcodec::URLContext *h, const unsigned char *buf, int size ) + int URLRageFile_write( avcodec::URLContext *h, const unsigned char *buf, int size ); #end { RageFileBasic *f = (RageFileBasic *) h->priv_data;