summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/Movie.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp
index 0f4f5d7c0c..6d7bf9f3b0 100644
--- a/Source/Core/Core/Movie.cpp
+++ b/Source/Core/Core/Movie.cpp
@@ -628,9 +628,11 @@ static void SetWiiInputDisplayString(int remoteID, u8* const data, const Wiimote
s_InputDisplay[controllerID].append(accel);
}
- if (irData) // incomplete
+ if (irData)
{
- std::string ir = StringFromFormat(" IR:%d,%d", ((u8*)irData)[0], ((u8*)irData)[1]);
+ u16 x = irData[0] | ((irData[2] >> 4 & 0x3) << 8);
+ u16 y = irData[1] | ((irData[2] >> 2 & 0x3) << 8);
+ std::string ir = StringFromFormat(" IR:%d,%d", x, y);
s_InputDisplay[controllerID].append(ir);
}