diff options
| author | Alexander <alex@cogarr.net> | 2019-01-09 16:59:36 -0500 |
|---|---|---|
| committer | Alexander <alex@cogarr.net> | 2019-01-09 16:59:36 -0500 |
| commit | 2be63de9e9cf8e201627fecad37acd0f1a4a6757 (patch) | |
| tree | 3ca1986e9be796dbb49339fcd7d8a5a958a49299 /src/client/lua_api/gui | |
| parent | f0d98ad70d2188197be00f6c1a9b7338473c6485 (diff) | |
| download | brokengine-2be63de9e9cf8e201627fecad37acd0f1a4a6757.tar.gz brokengine-2be63de9e9cf8e201627fecad37acd0f1a4a6757.tar.bz2 brokengine-2be63de9e9cf8e201627fecad37acd0f1a4a6757.zip | |
Started automating makefile
Started working on some of the harder parts of building dependencies
with the makefile. bullet, irrlicht, and luajit all currently are
built automatically on windows under msys2
Diffstat (limited to 'src/client/lua_api/gui')
| -rw-r--r-- | src/client/lua_api/gui/iguielement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/lua_api/gui/iguielement.cpp b/src/client/lua_api/gui/iguielement.cpp index 4d53ca2..7e8163d 100644 --- a/src/client/lua_api/gui/iguielement.cpp +++ b/src/client/lua_api/gui/iguielement.cpp @@ -177,7 +177,7 @@ int getiguitext(lua_State* L){ lua_pop(L,2);// const wchar_t *t = el->getText(); size_t cstrlen = wcslen(t); - printf("In gui get text, cstrlen is %zu\n",cstrlen); + //printf("In gui get text, cstrlen is %zu\n",cstrlen); char output[cstrlen + 1];//+1 for \0 wcstombs(output,t,cstrlen); output[cstrlen] = '\0'; |
