From afdcddc0c56f12029a9698f077a0ad4a8f324cae Mon Sep 17 00:00:00 2001 From: Chris Burgener Date: Wed, 4 Jan 2017 10:37:21 -0500 Subject: [PATCH] Add missing new lines for OSD --- Source/Core/Core/Movie.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index 769bc869d0..840a3f8255 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -172,7 +172,7 @@ std::string GetInputDisplay() for (int i = 0; i < 8; ++i) { if ((s_controllers & (1 << i)) != 0) - input_display += s_InputDisplay[i]; + input_display += s_InputDisplay[i] + '\n'; } } return input_display; @@ -184,7 +184,7 @@ std::string GetRTCDisplay() time_t current_time = CEXIIPL::GetEmulatedTime(CEXIIPL::UNIX_EPOCH); tm* gm_time = gmtime(¤t_time); char buffer[256]; - strftime(buffer, sizeof(buffer), "Date/Time: %c", gm_time); + strftime(buffer, sizeof(buffer), "Date/Time: %c\n", gm_time); std::stringstream format_time; format_time << buffer; return format_time.str();