diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-05-14 18:14:31 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-14 18:14:31 +1000 |
| commit | f43515ea76682b3caa350a2eb35a5e805d814228 (patch) | |
| tree | c8ec40ee527ab516743a9dfb147dde59aa718caf /Source/Core | |
| parent | 1d5dd5db914d94f3f612c13c6c5e1d5e711b49b5 (diff) | |
| parent | b35c58451a28a5ab55a77f569b41f0d61fc24d53 (diff) | |
Merge pull request #8100 from flagrama/input-while-replaying-dtm
Clear existing GCPadStatus when playing back DTM files
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Movie.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Core/Movie.cpp b/Source/Core/Core/Movie.cpp index 2e209c47b2..6af7681eb7 100644 --- a/Source/Core/Core/Movie.cpp +++ b/Source/Core/Core/Movie.cpp @@ -1147,6 +1147,7 @@ void PlayController(GCPadStatus* PadStatus, int controllerID) PadStatus->substickX = s_padState.CStickX; PadStatus->substickY = s_padState.CStickY; + PadStatus->button = 0; PadStatus->button |= PAD_USE_ORIGIN; if (s_padState.A) |
