diff options
author | tron <tron@openttd.org> | 2006-02-18 18:27:17 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-02-18 18:27:17 +0000 |
commit | 55461bd2ec885a7f2808b5e10bb0403a17b6dff3 (patch) | |
tree | 8d2ba1fb451213f75b8b50a0ab4b980871781c6e | |
parent | ca98796259fb18524b9cbe198e37f551dbb022a8 (diff) | |
download | openttd-55461bd2ec885a7f2808b5e10bb0403a17b6dff3.tar.xz |
(svn r3617) Fix warning introduced in r3616
-rw-r--r-- | video/cocoa_v.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/cocoa_v.m b/video/cocoa_v.m index d98f623f4..b288b9109 100644 --- a/video/cocoa_v.m +++ b/video/cocoa_v.m @@ -1220,7 +1220,7 @@ static const char* QZ_SetVideoWindowed(uint width, uint height) * Fade the display from normal to black * Save gamma tables for fade back to normal */ -static uint32 QZ_FadeGammaOut(const OTTD_QuartzGammaTable* table) +static uint32 QZ_FadeGammaOut(OTTD_QuartzGammaTable* table) { CGGammaValue redTable[QZ_GAMMA_TABLE_SIZE]; CGGammaValue greenTable[QZ_GAMMA_TABLE_SIZE]; |