From 32dc80dd51840354fcdffddcb3b69e35c7298dea Mon Sep 17 00:00:00 2001 From: neil Date: Sat, 13 Oct 2012 08:53:42 +0000 Subject: [PATCH] - Use angle brackets instead of quotes for standard includes. - Remove pointless comment (LowColorBits is the same size as ColorTable). git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@45897 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/graphics/getcolormap.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rom/graphics/getcolormap.c b/rom/graphics/getcolormap.c index 69b3ed51a7..1eebf906a3 100644 --- a/rom/graphics/getcolormap.c +++ b/rom/graphics/getcolormap.c @@ -1,14 +1,14 @@ /* - Copyright © 1995-2010, The AROS Development Team. All rights reserved. + Copyright © 1995-2012, The AROS Development Team. All rights reserved. $Id$ Desc: Graphics function GetColorMap() Lang: english */ -#include "exec/memory.h" -#include "exec/types.h" -#include "proto/exec.h" -#include "graphics/view.h" +#include +#include +#include +#include #include "graphics_intern.h" /***************************************************************************** @@ -75,7 +75,7 @@ /* get memory for the ColorTable */ NewCM -> ColorTable = AllocMem(entries * sizeof(UWORD), MEMF_CLEAR|MEMF_PUBLIC); - /* get memory for LowColorbits !!!how much memory we need for that?? */ + /* get memory for LowColorBits */ NewCM -> LowColorBits = AllocMem(entries * sizeof(UWORD), MEMF_CLEAR|MEMF_PUBLIC); ptr1 = NewCM -> ColorTable; -- 2.11.4.GIT