[N64/GCN/iQue]: Fix Train Station image not loading
This commit is contained in:
parent
dae486c60d
commit
993c8b047d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue