diff options
author | yg2f <yoann@terminajones.com> | 2015-04-06 13:57:31 +0200 |
---|---|---|
committer | yg2f <yoann@terminajones.com> | 2015-04-06 13:57:31 +0200 |
commit | fcbf473d0d64a84780d91e04fc4b9fc052ede296 (patch) | |
tree | 6eb63deab44238e5792d2eae9a6f34c073cb0400 | |
parent | 5d99e15e43d5a446b35d48e8a3b08a478f1998a9 (diff) |
fix printraw to make it actually print raw
-rw-r--r-- | modules/gdscript/gd_functions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_functions.cpp b/modules/gdscript/gd_functions.cpp index f37b2f645a..ce2cb14643 100644 --- a/modules/gdscript/gd_functions.cpp +++ b/modules/gdscript/gd_functions.cpp @@ -575,7 +575,7 @@ void GDFunctions::call(Function p_func,const Variant **p_args,int p_arg_count,Va } //str+="\n"; - OS::get_singleton()->print("%s\n",str.utf8().get_data()); + OS::get_singleton()->print("%s",str.utf8().get_data()); r_ret=Variant(); } break; |