Remove (currently) unused DACharacterCommonStatusStruct

I forgot where this is from (Player.sav maybe?) but I don't know what it
is yet. I'll add it back once I come across it again.
This commit is contained in:
Joshua Goins 2025-02-25 19:37:42 -05:00
parent 2e0403beb1
commit 0474a68f26
2 changed files with 1 additions and 9 deletions

View file

@ -5,7 +5,7 @@ use crate::linear_color::LinearColorStruct;
use crate::primary_asset_id::PrimaryAssetIdStruct; use crate::primary_asset_id::PrimaryAssetIdStruct;
use crate::primary_asset_type::PrimaryAssetTypeStruct; use crate::primary_asset_type::PrimaryAssetTypeStruct;
use crate::structs::{ use crate::structs::{
DAAssembleIdDataStruct, DACharacterCommonStatusStruct, DACustomizeAssetIdDataStruct, DAAssembleIdDataStruct, DACustomizeAssetIdDataStruct,
DAHumanoidColoringDataStruct, DAHumanoidFigureData, DALoadOptionStruct, DAHumanoidColoringDataStruct, DAHumanoidFigureData, DALoadOptionStruct,
DAMachineColoringDataStruct, DAModuleColorStruct, DAModuleItemDataStruct, DATriggerDataStruct, DAMachineColoringDataStruct, DAModuleColorStruct, DAModuleItemDataStruct, DATriggerDataStruct,
DATuningDataStruct, DATuningPointData, DateTimeStruct, QuatStruct, SaveSlotInfoStruct, DATuningDataStruct, DATuningPointData, DateTimeStruct, QuatStruct, SaveSlotInfoStruct,
@ -23,8 +23,6 @@ pub enum Struct {
DALoadOption(DALoadOptionStruct), DALoadOption(DALoadOptionStruct),
#[br(pre_assert(magic == "SaveSlotInfo"))] #[br(pre_assert(magic == "SaveSlotInfo"))]
SaveSlotInfo(SaveSlotInfoStruct), SaveSlotInfo(SaveSlotInfoStruct),
#[br(pre_assert(magic == "DACharacterCommonStatus"))]
DACharacterCommonStatus(DACharacterCommonStatusStruct),
#[br(pre_assert(magic == "PrimaryAssetType"))] #[br(pre_assert(magic == "PrimaryAssetType"))]
PrimaryAssetType(PrimaryAssetTypeStruct), PrimaryAssetType(PrimaryAssetTypeStruct),
#[br(pre_assert(magic == "PrimaryAssetId"))] #[br(pre_assert(magic == "PrimaryAssetId"))]

View file

@ -44,12 +44,6 @@ pub struct SaveSlotInfoStruct {
pub players: ArrayProperty, pub players: ArrayProperty,
} }
#[binrw]
#[derive(Debug)]
pub struct DACharacterCommonStatusStruct {
pub unk: [u8; 17],
}
// TODO: replace all usage of this with StructField // TODO: replace all usage of this with StructField
#[binrw] #[binrw]
#[derive(Debug)] #[derive(Debug)]