Browse Source

removed printing redirect tag from [LOVE2D] to [LOVE]

Martin Felis 11 years ago
parent
commit
aba2f47b31
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jni/love/src/love.cpp

+ 1 - 1
jni/love/src/love.cpp

@@ -147,7 +147,7 @@ static int l_print_sdl_log (lua_State *L) {
 		out_string += lua_tostring (L, i);
 	}
 
-	SDL_Log ("[LOVE2D] %s", out_string.c_str());
+	SDL_Log ("[LOVE] %s", out_string.c_str());
 	return 0;
 }