1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

fix printraw to make it actually print raw

This commit is contained in:
yg2f
2015-04-06 13:57:31 +02:00
parent 5d99e15e43
commit fcbf473d0d

View File

@@ -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;