Skip to content

Commit

Permalink
commonstring - use btreemap instead of hashmap
Browse files Browse the repository at this point in the history
  • Loading branch information
K0lb3 committed Jun 30, 2023
1 parent 7b64bf1 commit 7f3146e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commonstring.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use lazy_static::lazy_static;
use std::collections::HashMap;
use std::collections::BTreeMap;

lazy_static! {
pub static ref COMMONSTRING: HashMap<u32, &'static str> = [
pub static ref COMMONSTRING: BTreeMap<u32, &'static str> = [
(0, "AABB"),
(5, "AnimationClip"),
(19, "AnimationCurve"),
Expand Down

0 comments on commit 7f3146e

Please sign in to comment.