remove some redundant code

This commit is contained in:
adelikat 2020-05-25 20:00:40 -05:00
parent 0d12d5a819
commit cd5591a122
3 changed files with 0 additions and 6 deletions

View File

@ -133,8 +133,6 @@ namespace BizHawk.Client.Common
if (cheat != (Cheat)null)
{
cheat.PokeValue(val);
PokeByte(val);
return true;
}
}

View File

@ -158,8 +158,6 @@ namespace BizHawk.Client.Common
if (cheat != (Cheat)null)
{
cheat.PokeValue((int)val);
PokeDWord(val);
return true;
}
}

View File

@ -141,8 +141,6 @@ namespace BizHawk.Client.Common
if (cheat != (Cheat)null)
{
cheat.PokeValue(val);
PokeWord(val);
return true;
}
}