use USER_CPPFLAGS
[AROS.git] / arch / all-native / bootconsole / util_fb.c
blob2210c9e7ec60430925816b84789d547257378e06
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <bootconsole.h>
8 void fb_SetMirror(char *addr)
10 if (addr)
13 * Don't use memcpy() here because libc memcpy() may use exec.library/CopyMem()
14 * which can be not available yet.
16 unsigned int i;
18 for (i = 0; i < scr_Width * scr_Height; i++)
19 addr[i] = fb_Mirror[i];
22 fb_Mirror = addr;