Skip to content

Commit 0e63e1a

Browse files
committed
Crash Warped: case sensitivity
1 parent 3d0bd07 commit 0e63e1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CrashWarped/scenes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ class CrashWarpedScene implements SceneDesc {
222222

223223
public async createScene(device: GfxDevice, context: SceneContext) {
224224
const folder = (this.index / 0x10) >>> 0;
225-
const subpath = `S${folder.toString()}/S00000${hexzero(this.index, 2)}`;
225+
const subpath = `S${folder.toString()}/S00000${hexzero(this.index, 2).toUpperCase()}`;
226226
const levelIndex = await context.dataFetcher.fetchData(`${pathBase}/${subpath}.NSD`);
227227
const levelData = await context.dataFetcher.fetchData(`${pathBase}/${subpath}.NSF`);
228228
const pre = Date.now();

0 commit comments

Comments
 (0)