From 5166f6de04da52f8220bc63407869fbf7f0a2729 Mon Sep 17 00:00:00 2001 From: dece Date: Sat, 30 May 2020 17:38:33 +0200 Subject: [PATCH] param: comment out unused UTF16 row names flag Unsure if used in PTDE, but at least there are no more warnings. --- src/formats/param.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/formats/param.rs b/src/formats/param.rs index a4ea403..7decd54 100644 --- a/src/formats/param.rs +++ b/src/formats/param.rs @@ -11,11 +11,11 @@ use crate::formats::paramdef; use crate::utils::bin::{has_flag, mask}; use crate::utils::str as utils_str; -const FLAGS2D_UNK1: u8 = 0b00000001; -const FLAGS2D_32B_OFS_DATA: u8 = 0b00000010; -const FLAGS2D_64B_OFS_DATA: u8 = 0b00000100; -const FLAGS2D_OFS_STRING: u8 = 0b10000000; -const FLAGS2E_UNICODE_NAMES: u8 = 0b00000001; +const FLAGS2D_UNK1: u8 = 0b00000001; +const FLAGS2D_32B_OFS_DATA: u8 = 0b00000010; +const FLAGS2D_64B_OFS_DATA: u8 = 0b00000100; +const FLAGS2D_OFS_STRING: u8 = 0b10000000; +const _FLAGS2E_UNICODE_NAMES: u8 = 0b00000001; #[derive(Debug)] pub struct ParamHeader {