Skip to content

Commit 652607b

Browse files
Merge pull request #739 from wheremyfoodat/forgotten-hotkeys
[SIO] Fix memory card block titles
2 parents b4c5161 + 53eadf1 commit 652607b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/sio.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ void PCSX::SIO::getMcdBlockInfo(int mcd, int block, McdBlock &info) {
746746
ts += b;
747747
uint16_t c = b;
748748
if (b & 0x80) {
749-
c << 8;
749+
c <<= 8;
750750
b = *ptr++;
751751
ts += b;
752752
c |= b;

0 commit comments

Comments
 (0)