summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMathew Maidment <mathew1800@gmail.com>2015-12-02 11:58:14 -0500
committerMathew Maidment <mathew1800@gmail.com>2015-12-02 11:58:14 -0500
commita5904b522d4bb73e24e8d453566cc1cdcd1b7ccb (patch)
tree4ce058a0358bf58e9d89f68b597d293baa2255f5 /Source/Core
parentabbc25f662e28d71307dae40a7278c6004eb3d56 (diff)
parentf41990af38b17ef4d147eca7204e4ecb0129f2c3 (diff)
Merge pull request #3306 from JosJuice/incorrect-trans
Remove incorrect usage of _trans
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb.cpp b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb.cpp
index 46ebb9a8cf..e3ac8a0eaa 100644
--- a/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb.cpp
+++ b/Source/Core/Core/IPC_HLE/WII_IPC_HLE_Device_usb.cpp
@@ -1879,7 +1879,7 @@ void CWII_IPC_HLE_Device_usb_oh1_57e_305::DisplayDisconnectMessage(const int wii
{
// TODO: If someone wants to be fancy we could also figure out what the values for pDiscon->reason mean
// and display things like "Wiimote %i disconnected due to inactivity!" etc.
- Core::DisplayMessage(StringFromFormat(_trans("Wiimote %i disconnected by emulated software"), wiimoteNumber), 3000);
+ Core::DisplayMessage(StringFromFormat("Wiimote %i disconnected by emulated software", wiimoteNumber), 3000);
}
void CWII_IPC_HLE_Device_usb_oh1_57e_305::LOG_LinkKey(const u8* _pLinkKey)