Fixing color in gwin widgets demo

This commit is contained in:
Joel Bodenmann 2014-08-08 14:04:49 +02:00
parent 14f372bef8
commit 052a8e033c

View File

@ -194,7 +194,7 @@ static void createWidgets(void) {
wi.g.width = ScrWidth/2 - 2*border; wi.g.width = ScrWidth/2 - 2*border;
ghConsole = gwinConsoleCreate(0, &wi.g); ghConsole = gwinConsoleCreate(0, &wi.g);
gwinSetColor(ghConsole, Black); gwinSetColor(ghConsole, Black);
gwinSetBgColor(ghConsole, 0xF0F0F0); gwinSetBgColor(ghConsole, HTML2COLOR(0xF0F0F0));
// Buttons // Buttons
wi.g.parent = ghPgButtons; wi.g.parent = ghPgButtons;