revert between 56095 -> 55830 in arch
[AROS.git] / arch / all-native / bootconsole / clear.c
blob03add6ddaeed67c121bf9041763e4632f5c05212
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <bootconsole.h>
8 /* Clear the console */
9 void con_Clear(void)
11 switch (scr_Type)
13 case SCR_TEXT:
14 txt_Clear();
15 break;
17 case SCR_GFX:
18 fb_Clear();
19 break;