Skip to content

Commit 79bd931

Browse files
authored
ct: fix crazybox resource name (#886)
For some reason the crazybox levels have a lowercase tex filename
1 parent 2227b0e commit 79bd931

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/CrazyTaxi/scenes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class SceneDesc implements Viewer.SceneDesc {
204204
"texDC0.all",
205205
`pol${this.id}.all`,
206206
`pol${this.id}_stream.all`,
207-
`tex${this.id.toUpperCase()}.all`,
207+
`tex${this.id === 'dc3' ? this.id : this.id.toUpperCase()}.all`,
208208
"misc.all",
209209
"white.tex",
210210
]);

0 commit comments

Comments
 (0)