Browse Source

Merge pull request #1639 from UsernameIsAReservedWord/fix_printraw

PR : fixes printraw to make it actually print raw
Juan Linietsky 10 years ago
parent
commit
888dfcb02e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/gdscript/gd_functions.cpp

+ 1 - 1
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";
 			//str+="\n";
-			OS::get_singleton()->print("%s\n",str.utf8().get_data());
+			OS::get_singleton()->print("%s",str.utf8().get_data());
 			r_ret=Variant();
 			r_ret=Variant();
 
 
 		} break;
 		} break;