fix card images displaying in linux

This commit is contained in:
Loki 2010-11-03 13:23:23 +00:00
parent 2b44ff0d69
commit b223d83be5
2 changed files with 6 additions and 5 deletions

View file

@ -87,10 +87,10 @@ public class Config {
File test = new File(cardsResourcePath);
if (test.isDirectory()) {
useResource = false;
frameResourcePath = cardsResourcePath + "Frame\\";
powerboxResourcePath = cardsResourcePath + "PowerBox\\";
cardArtResourcePath = cardsResourcePath + "Pics\\";
setIconsResourcePath = cardsResourcePath + "Icon\\";
frameResourcePath = cardsResourcePath + "Frame" + File.separator;
powerboxResourcePath = cardsResourcePath + "PowerBox" + File.separator;
cardArtResourcePath = cardsResourcePath + "Pics" + File.separator;
setIconsResourcePath = cardsResourcePath + "Icon" + File.separator;
symbolsResourcePath = p.getProperty("symbols-resource-path");
}
else {