Skip to content

Commit 4c549b8

Browse files
nodejs: Add support for CHD images
As of PPSSPP 1.17, CHD images are officially supported.
1 parent 6a52a8d commit 4c549b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodejs/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function flattenDirToRewrites(dirPath, subdir = '/', list = []) {
4646
return flattenDirToRewrites(path, subdir + file + '/', list);
4747
}
4848

49-
if (/\.(cso|iso|pbp|elf|prx|ppdmp)$/i.test(file)) {
49+
if (/\.(chd|cso|elf|iso|pbp|ppdmp|prx)$/i.test(file)) {
5050
list.push({
5151
source: '/' + encodeURIComponent(file),
5252
destination: subdir + encodeURIComponent(file)

0 commit comments

Comments
 (0)