From d92ccd3af17555e92f3b93a12bf2b8b33d70657f Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sun, 10 Jul 2011 14:14:13 -0400 Subject: [PATCH] Revert. Lua warning logs do not show on runtime. I think we have more to do first. --- src/RageLog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RageLog.cpp b/src/RageLog.cpp index d1e60e8eb0..534df14bbf 100644 --- a/src/RageLog.cpp +++ b/src/RageLog.cpp @@ -263,7 +263,7 @@ void RageLog::Write( int where, const RString &sLine ) sStr.insert( 0, sWarning ); if( m_bShowLogOutput || (where&WRITE_TO_INFO) ) - fputws( (const wchar_t *)sStr.c_str(), stdout ); + puts(sStr); //fputws( (const wchar_t *)sStr.c_str(), stdout ); if( where & WRITE_TO_INFO ) AddToInfo( sStr ); if( m_bLogToDisk && (where&WRITE_TO_INFO) && g_fileInfo->IsOpen() )