Skip to content

Commit ddd283e

Browse files
XenHatxenhat
authored andcommitted
move fixup for Zenless Zone Zero
1 parent 0f89ae2 commit ddd283e

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

src/process/index.js

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ for(var entry of DetectableDB) {
2727
if(entry.id == "356943187589201930") {
2828
entry.executables.push({ is_launcher: false, name: "dolphin-emu", os: "linux" })
2929
}
30+
if(entry.id == "1257819671114289184") {
31+
entry.executables.push({ is_launcher: false, name: "zenlesszonezero", os: "win32" })
32+
}
3033
break;
3134
}
3235
import * as Natives from './native/index.js';
@@ -154,17 +157,6 @@ export default class ProcessServer {
154157
// debug(`Match Level 5: "${name}" via [${running}] with 'if ([${cwdPath}}/{${running}].includes(/[${known_exe.name}])'`)
155158
return true;
156159
}
157-
if (
158-
running.includes('zenlesszonezero') &&
159-
known_exe.name.includes('zenlesszonezero')
160-
) {
161-
// log(
162-
// `WARNING: Failed to match known problematic but running game '${known_exe.name}' via '${running}\n`,
163-
// 'The database needs to be fixed to make the following match succeed:\n',
164-
// `Running ==> [${running}] <==> [${known_exe.name}] <== Database`,
165-
// );
166-
return true
167-
}
168160
})
169161
) {
170162
return true;

0 commit comments

Comments
 (0)