summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2015-08-10 12:52:11 +0200
committerPierre Bourdon <delroth@gmail.com>2015-08-10 12:52:11 +0200
commitd2413cd3defbdb1e88e11d58af322388e116a970 (patch)
tree5d72a6e5c9dec060ad1dea022d26257f22493efa /Source/Core
parente297e3e666f074230323112d73a3f391b3728b86 (diff)
parent0e725c0860beb7a2a1a49bffd266a026bdce1f2a (diff)
Merge pull request #2827 from Tilka/misc
USBGecko: don't needlessly call StringFromFormat()
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/HW/EXI_DeviceGecko.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/Core/HW/EXI_DeviceGecko.cpp b/Source/Core/Core/HW/EXI_DeviceGecko.cpp
index f364e7b78b..767ef9b785 100644
--- a/Source/Core/Core/HW/EXI_DeviceGecko.cpp
+++ b/Source/Core/Core/HW/EXI_DeviceGecko.cpp
@@ -163,13 +163,13 @@ void CEXIGecko::ImmReadWrite(u32 &_uData, u32 _uSize)
switch (_uData >> 28)
{
case CMD_LED_OFF:
- Core::DisplayMessage(StringFromFormat(
- "USBGecko: No LEDs for you!"),
+ Core::DisplayMessage(
+ "USBGecko: No LEDs for you!",
3000);
break;
case CMD_LED_ON:
- Core::DisplayMessage(StringFromFormat(
- "USBGecko: A piercing blue light is now shining in your general direction"),
+ Core::DisplayMessage(
+ "USBGecko: A piercing blue light is now shining in your general direction",
3000);
break;