aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorAlexander Pickering <alex@cogarr.net>2018-12-18 20:10:10 -0500
committerAlexander Pickering <alex@cogarr.net>2018-12-18 20:10:10 -0500
commitf0d98ad70d2188197be00f6c1a9b7338473c6485 (patch)
tree79edaea2cf8e5f13f7919b6971c6995c0a3688bc /src/client
parent2009501214f3c2e3f8d8b1a06432afdf39276bd5 (diff)
downloadbrokengine-f0d98ad70d2188197be00f6c1a9b7338473c6485.tar.gz
brokengine-f0d98ad70d2188197be00f6c1a9b7338473c6485.tar.bz2
brokengine-f0d98ad70d2188197be00f6c1a9b7338473c6485.zip
Various fixes to get things working under msys2
Replaced various "make" calls in the makefile with $(MAKE) Replaced a few __mingw_printf with just printf Added some instructions to the readme
Diffstat (limited to 'src/client')
-rw-r--r--src/client/lua_api/gui/iguielement.cpp2
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 4ef5026..4d53ca2 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);
- __mingw_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';