Skip to content
This repository was archived by the owner on Jul 4, 2024. It is now read-only.

Commit d499eb3

Browse files
committed
Output filepath before processing it.
1 parent 042455f commit d499eb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parse.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,8 @@ fileNames.forEach((fileName, index) => {
965965
test: true,
966966
};
967967

968+
console.log('#' + index, newFileName);
969+
968970
let data = readStructure.bind(globals)(file, [getTypeHashFromFormatHash(header.readUInt32LE(4))], 0, null, [fileName]);
969971
let snoID = file.readUInt32LE(0);
970972

@@ -979,8 +981,6 @@ fileNames.forEach((fileName, index) => {
979981
});
980982
}
981983

982-
console.log('#' + index, newFileName);
983-
984984
if (data.eGameBalanceType !== null && data.eGameBalanceType !== undefined) {
985985
gbMap[data.eGameBalanceType] = gbMap[data.eGameBalanceType] || [];
986986
if (gbMap[data.eGameBalanceType].indexOf(newFileName) < 0) {

0 commit comments

Comments
 (0)