diff options
author | Daniel Schadt <kingdread@gmx.de> | 2019-12-07 03:18:36 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2019-12-07 03:18:36 +0100 |
commit | 9bd3c2da26b48d1ae2fc84b39bc5ef6844bd4e45 (patch) | |
tree | 0d48fb7a214419d7586eb5e40efa4ac370e82d68 /src/bt.rs | |
parent | c09d449902f529db6fe390b22307a237124410de (diff) | |
download | kondou-9bd3c2da26b48d1ae2fc84b39bc5ef6844bd4e45.tar.gz kondou-9bd3c2da26b48d1ae2fc84b39bc5ef6844bd4e45.tar.bz2 kondou-9bd3c2da26b48d1ae2fc84b39bc5ef6844bd4e45.zip |
lint fixes
Diffstat (limited to 'src/bt.rs')
-rw-r--r-- | src/bt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -276,7 +276,7 @@ impl BuildTemplate { } } -static JSON_PALETTE: &'static str = include_str!("skill_palette.json"); +static JSON_PALETTE: &str = include_str!("skill_palette.json"); fn skill_id_to_palette_id(input: u32) -> u32 { let lookup_table: Vec<(u32, u32)> = serde_json::from_str(JSON_PALETTE).unwrap(); |