- Removed unnecessary casts.
[AROS.git] / arch / all-native / bootconsole / util_fb.c
blob8feb4013e926b715bf902167b3891c1d867318e7
1 #include <bootconsole.h>
3 void fb_SetMirror(char *addr)
5 if (addr)
7 /*
8 * Don't use memcpy() here because libc memcpy() may use exec.library/CopyMem()
9 * which can be not available yet.
11 unsigned int i;
13 for (i = 0; i < scr_Width * scr_Height; i++)
14 addr[i] = fb_Mirror[i];
17 fb_Mirror = addr;