diff options
Diffstat (limited to 'Source/Core/VideoCommon/OnScreenDisplay.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/OnScreenDisplay.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/OnScreenDisplay.cpp b/Source/Core/VideoCommon/OnScreenDisplay.cpp index 1e4a8b41ec..30f6725ed6 100644 --- a/Source/Core/VideoCommon/OnScreenDisplay.cpp +++ b/Source/Core/VideoCommon/OnScreenDisplay.cpp @@ -56,8 +56,8 @@ void DrawMessages() alpha <<= 24; - g_renderer->RenderText(it->str.c_str(), left + 1, top + 1, 0x000000 | alpha); - g_renderer->RenderText(it->str.c_str(), left, top, 0xffff30 | alpha); + g_renderer->RenderText(it->str, left + 1, top + 1, 0x000000 | alpha); + g_renderer->RenderText(it->str, left, top, 0xffff30 | alpha); top += 15; if (time_left <= 0) |
