extern "C" {\r
#endif\r
\r
-typedef bool(* ConsolePrint)(void* con, char c);\r
+typedef bool(* ConsolePrint)(void* con, int c);\r
\r
//! a font struct for the console.\r
typedef struct ConsoleFont\r
{\r
(u8*)default_font_bin, //font gfx\r
0, //first ascii character in the set\r
- 128 //number of characters in the font set\r
+ 256 //number of characters in the font set\r
},\r
(u16*)NULL,\r
0,0, //cursorX cursorY\r
\r
PrintConsole* consoleGetDefault(void){return &defaultConsole;}\r
\r
-void consolePrintChar(char c);\r
+void consolePrintChar(int c);\r
void consoleDrawChar(int c);\r
\r
//---------------------------------------------------------------------------------\r
}\r
\r
//---------------------------------------------------------------------------------\r
-void consolePrintChar(char c) {\r
+void consolePrintChar(int c) {\r
//---------------------------------------------------------------------------------\r
if (c==0) return;\r
\r