Browse Source

add newline to non-windows log output

Palana 12 years ago
parent
commit
3462a9b8b9
1 changed files with 1 additions and 0 deletions
  1. 1 0
      obs/obs-app.cpp

+ 1 - 0
obs/obs-app.cpp

@@ -50,6 +50,7 @@ static void do_log(enum log_type type, const char *msg, va_list args)
 		__debugbreak();
 #else
 	vprintf(msg, args);
+	printf("\n");
 #endif
 }