diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2016-08-11 21:27:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-11 21:27:16 +0200 |
| commit | 4c9c4568460df91a38d40ac3071d7646230a8d0f (patch) | |
| tree | 0fd35aecfcee28b09b83a54e1a5e964f817d715e /Source/Core/VideoCommon/RenderBase.cpp | |
| parent | cef71afc2758702ed9bc03daac27b7e811ca9a50 (diff) | |
| parent | c1184957a5ca520cdc5b117ed78a7c601c924cd2 (diff) | |
Merge pull request #4116 from leoetlino/lint-real-fix
Tools: Fix the lint script (for real, this time -- and the last time)
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/RenderBase.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp index a8911a7cdd..fade0d00b9 100644 --- a/Source/Core/VideoCommon/RenderBase.cpp +++ b/Source/Core/VideoCommon/RenderBase.cpp @@ -312,9 +312,9 @@ void Renderer::DrawDebugText() { final_cyan += StringFromFormat("Frame: %llu", (unsigned long long)Movie::GetCurrentFrame()); if (Movie::IsPlayingInput()) - final_cyan += - StringFromFormat("\nInput: %llu / %llu", (unsigned long long)Movie::GetCurrentInputCount(), - (unsigned long long)Movie::GetTotalInputCount()); + final_cyan += StringFromFormat("\nInput: %llu / %llu", + (unsigned long long)Movie::GetCurrentInputCount(), + (unsigned long long)Movie::GetTotalInputCount()); } final_cyan += "\n"; |
