diff --git a/OpenRa.Game/MainWindow.cs b/OpenRa.Game/MainWindow.cs index 7994db9e14..8ae6156e96 100644 --- a/OpenRa.Game/MainWindow.cs +++ b/OpenRa.Game/MainWindow.cs @@ -257,8 +257,8 @@ namespace OpenRa.Game n++; if (e.KeyCode == Keys.Z) - if (--n < 0) - n = 0; + if (--n < 1) + n = 1; } TileSet LoadTileSet(Map currentMap)