Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Nov 23, 2024
1 parent e4f4ebc commit 6f49373
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions armorcore/sources/ts/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ function data_get_scene_raw(file: string): scene_t {
// If no extension specified, set to .arm
let ext: string = ends_with(file, ".arm") ? "" : ".arm";
let b: buffer_t = data_get_blob(file + ext);
let parsed: scene_t = null;
parsed = armpack_decode(b);
let parsed: scene_t = armpack_decode(b);
map_set(data_cached_scene_raws, file, parsed);
return parsed;
}
Expand Down

0 comments on commit 6f49373

Please sign in to comment.