diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-07-01 17:47:35 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-07-01 17:47:35 +1000 |
commit | 4afd5ec74429232e4db96001ed89757b0ba55ee7 (patch) | |
tree | 5889174cdcadbf39655a178509073952f68462d8 /src/gwin/console.c | |
parent | de27a6c2db6f5fb97b3a5d07395a629c879abfbc (diff) | |
parent | df5f701a11ea5603f1f0b44f0e6bd96084b6d09d (diff) | |
download | uGFX-4afd5ec74429232e4db96001ed89757b0ba55ee7.tar.gz uGFX-4afd5ec74429232e4db96001ed89757b0ba55ee7.tar.bz2 uGFX-4afd5ec74429232e4db96001ed89757b0ba55ee7.zip |
Merge branch 'GWIN' into image
Diffstat (limited to 'src/gwin/console.c')
-rw-r--r-- | src/gwin/console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/console.c b/src/gwin/console.c index 39e534b4..105cc79d 100644 --- a/src/gwin/console.c +++ b/src/gwin/console.c @@ -66,7 +66,7 @@ static const gwinVMT consoleVMT = { AfterClear, // The after-clear routine }; -GHandle gwinCreateConsole(GConsoleObject *gc, GWindowInit *pInit) { +GHandle gwinCreateConsole(GConsoleObject *gc, const GWindowInit *pInit) { if (!(gc = (GConsoleObject *)_gwindowCreate(&gc->g, pInit, &consoleVMT, 0))) return 0; #if GFX_USE_OS_CHIBIOS && GWIN_CONSOLE_USE_BASESTREAM |