Skip to content

Commit

Permalink
Removed unused MDX code.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Dec 20, 2023
1 parent 075f08b commit 1859899
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Engines/FlatRedBallXNA/FlatRedBall/Input/Keyboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -326,13 +326,7 @@ public void IgnoreKeyForOneFrame(Keys key)

public bool IsKeyLetter(Keys key)
{
#if FRB_MDX
return (key >= Keys.Q && key <= Keys.P) ||
(key >= Keys.A && key <= Keys.L) ||
(key >= Keys.Z && key <= Keys.M);
#else
return key >= Keys.A && key <= Keys.Z;
#endif
}


Expand Down

0 comments on commit 1859899

Please sign in to comment.