diff --git a/src/server/util/pico8.ts b/src/server/util/pico8.ts index 6029796..4d6cb0b 100644 --- a/src/server/util/pico8.ts +++ b/src/server/util/pico8.ts @@ -5,7 +5,7 @@ import {execFile} from "child_process"; const __dirname = fileURLToPath(new URL('.', import.meta.url)); const picoDirPath = path.resolve(__dirname, "..", "..", "..", "pico8"); -const picoBinPath = path.resolve(picoDirPath, "pico8"); +const picoBinPath = path.resolve(picoDirPath, "pico8_dyn"); const cmd = (cmd: string, args: string[], options = {}) => { return new Promise((resolve, reject) => {