From 622e74b66c5db15f2f389998e0911953a270aba9 Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Fri, 4 Sep 2009 16:13:51 +0000 Subject: [PATCH] [CHG] Nothing important (code formating) --- GRRLIB/GRRLIB/GRRLIB_bmfx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GRRLIB/GRRLIB/GRRLIB_bmfx.c b/GRRLIB/GRRLIB/GRRLIB_bmfx.c index ed6081c..8b5f840 100644 --- a/GRRLIB/GRRLIB/GRRLIB_bmfx.c +++ b/GRRLIB/GRRLIB/GRRLIB_bmfx.c @@ -82,14 +82,14 @@ void GRRLIB_BMFX_Grayscale (const GRRLIB_texImg *texsrc, ((gray << 24) | (gray << 16) | (gray << 8) | (color & 0xFF))); } } - GRRLIB_SetHandle(texdest, 0,0); + GRRLIB_SetHandle(texdest, 0, 0); } /** * Change a texture to sepia (old photo style). * @see GRRLIB_FlushTex * @param texsrc The texture source. - * @param texdest The texture grayscaled destination. + * @param texdest The texture destination. * @author elisherer */ void GRRLIB_BMFX_Sepia (const GRRLIB_texImg *texsrc, GRRLIB_texImg *texdest) { @@ -108,7 +108,7 @@ void GRRLIB_BMFX_Sepia (const GRRLIB_texImg *texsrc, GRRLIB_texImg *texdest) { GRRLIB_GetColor(sr,sg,sb,color&0xFF)); } } - GRRLIB_SetHandle(texdest, 0,0); + GRRLIB_SetHandle(texdest, 0, 0); } /** * Invert colors of the texture.