Skip to content

Commit ae6ff1d

Browse files
committed
Fix SNES Action Replay cheatcode decoder
seems to be a typo from d0db418 (4bfb4ab/#1867)
1 parent 45b9585 commit ae6ff1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BizHawk.Client.Common/cheats/GameSharkDecoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private static IDecodeResult Snes(string code)
136136

137137
if (code.Length == 8)
138138
{
139-
return GbGameSharkDecoder.Decode(code);
139+
return SnesActionReplayDecoder.Decode(code);
140140
}
141141

142142
return new InvalidCheatCode($"Unknown code type: {code}");

0 commit comments

Comments
 (0)