pixelcade icon indicating copy to clipboard operation
pixelcade copied to clipboard

Pixelcade does not use os specific path separators

Open n-i-x opened this issue 3 years ago • 0 comments

Pixelweb cannot locate files in linux:

Console Mapped: lightgun
# of Times to Loop: null
alt text if game file not found:
Looking for: /userdata/system/pixelcade/console\lightgun.png or .gif

Please construct paths using os-agnostic methods:

Path path = Paths.get("dir1", "dir2");
String[] pathNames = { "path1", "path2", "path3" };
String path = String.join(File.pathSeparator, pathNames);

n-i-x avatar Dec 30 '21 17:12 n-i-x