Fix SNES Action Replay cheatcode decoder

seems to be a typo from d0db4188d3
(4bfb4ab00/#1867)
This commit is contained in:
YoshiRulz 2024-11-12 01:54:05 +10:00
parent 45b958517e
commit ae6ff1dac9
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ namespace BizHawk.Client.Common.cheats
if (code.Length == 8)
{
return GbGameSharkDecoder.Decode(code);
return SnesActionReplayDecoder.Decode(code);
}
return new InvalidCheatCode($"Unknown code type: {code}");