remove some redundant code
This commit is contained in:
parent
0d12d5a819
commit
cd5591a122
|
@ -133,8 +133,6 @@ namespace BizHawk.Client.Common
|
||||||
if (cheat != (Cheat)null)
|
if (cheat != (Cheat)null)
|
||||||
{
|
{
|
||||||
cheat.PokeValue(val);
|
cheat.PokeValue(val);
|
||||||
PokeByte(val);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -158,8 +158,6 @@ namespace BizHawk.Client.Common
|
||||||
if (cheat != (Cheat)null)
|
if (cheat != (Cheat)null)
|
||||||
{
|
{
|
||||||
cheat.PokeValue((int)val);
|
cheat.PokeValue((int)val);
|
||||||
PokeDWord(val);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -141,8 +141,6 @@ namespace BizHawk.Client.Common
|
||||||
if (cheat != (Cheat)null)
|
if (cheat != (Cheat)null)
|
||||||
{
|
{
|
||||||
cheat.PokeValue(val);
|
cheat.PokeValue(val);
|
||||||
PokeWord(val);
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue