From aba2f47b3159e90f35482314fad4fc5f7aaae5e5 Mon Sep 17 00:00:00 2001 From: Martin Felis Date: Mon, 18 Aug 2014 19:04:40 +0200 Subject: [PATCH] removed printing redirect tag from [LOVE2D] to [LOVE] --- jni/love/src/love.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jni/love/src/love.cpp b/jni/love/src/love.cpp index 121241d2..d2c39441 100644 --- a/jni/love/src/love.cpp +++ b/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; }