[N64/GCN/iQue]: Fix Train Station image not loading

This commit is contained in:
Cuyler36 2019-01-14 16:32:03 -05:00
parent dae486c60d
commit 993c8b047d

View file

@ -15,7 +15,7 @@ public static Image GetStationImage(int station)
{
Image stationImg = null;
var stationFile = Path.Combine(PathUtility.GetResourcesDirectory(), "Images", "Icons",
$"Stations{station + 1}.png");
"Stations", $"{station + 1}.png");
if (!File.Exists(stationFile)) return null;
try