We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d0bd07 commit 0e63e1aCopy full SHA for 0e63e1a
src/CrashWarped/scenes.ts
@@ -222,7 +222,7 @@ class CrashWarpedScene implements SceneDesc {
222
223
public async createScene(device: GfxDevice, context: SceneContext) {
224
const folder = (this.index / 0x10) >>> 0;
225
- const subpath = `S${folder.toString()}/S00000${hexzero(this.index, 2)}`;
+ const subpath = `S${folder.toString()}/S00000${hexzero(this.index, 2).toUpperCase()}`;
226
const levelIndex = await context.dataFetcher.fetchData(`${pathBase}/${subpath}.NSD`);
227
const levelData = await context.dataFetcher.fetchData(`${pathBase}/${subpath}.NSF`);
228
const pre = Date.now();
0 commit comments