Skip to content

Commit

Permalink
chore: make rustfmt happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
UserIsntAvailable committed Oct 15, 2024
1 parent b1175ae commit db5f6bb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ashen/src/asset/texture/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,8 @@ mod tests {
fn parse_rom_asset() -> eyre::Result<()> {
let (_, color_map) = ColorMap::parser(())(&COLOR_MAP_DATA)?;
let color_map = &color_map.shades[15];
let (_, offsets) =
Vec::<TextureOffset>::parser(())(&TEXTURE_INFO_DATA)?;
let (_, textures) =
Vec::<TextureAnimationKind>::parser(&offsets)(&TEXTURE_DATA)?;
let (_, offsets) = Vec::<TextureOffset>::parser(())(&TEXTURE_INFO_DATA)?;
let (_, textures) = Vec::<TextureAnimationKind>::parser(&offsets)(&TEXTURE_DATA)?;

let output_dir = PathBuf::from(parsed_file_path!("textures/"));

Expand Down

0 comments on commit db5f6bb

Please sign in to comment.