Skip to content

Commit

Permalink
Fix frame count field
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-thomas774 committed Jan 29, 2024
1 parent 9de14b0 commit 7dd6c84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jpa/jpac2_11/bsp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ impl BSP1 {
ui.label(RichText::new(format!("Color Flags: {:#02X}", self.color_flags)).monospace());
ui.horizontal(|ui| {
ui.label("Color Animation Frame Count: ");
ui.add(DragValue::new(&mut self.anm_rndm).speed(1));
ui.add(DragValue::new(&mut self.color_anm_max_frame).speed(1));
});
ui.label(format!("Anim Random: {}", self.anm_rndm));
ui.horizontal(|ui| {
Expand Down

0 comments on commit 7dd6c84

Please sign in to comment.