Skip to content

Commit

Permalink
Fix some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
scurest committed Jul 25, 2024
1 parent 5d604c0 commit 75cb088
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/nds/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ pub mod texture_formats;
pub mod texture_params;
pub mod decode_texture;

pub use self::texture_formats::{TextureFormat, FormatDesc, Alpha};
pub use self::texture_formats::{TextureFormat, Alpha};
pub use self::texture_params::TextureParams;
pub use self::decode_texture::decode_texture;
2 changes: 1 addition & 1 deletion src/skeleton/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pub mod symbolic_matrix;
mod vertex_record;
mod joint_tree;

pub use self::symbolic_matrix::{SMatrix, CMatrix, AMatrix, ATerm};
pub use self::symbolic_matrix::{SMatrix, AMatrix};

use cgmath::Matrix4;
use nitro::Model;
Expand Down
2 changes: 1 addition & 1 deletion src/viewer/main_loop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub fn main_loop(db: Database, conn: Connection) {
win_title: String,
cur_time: u64,
last_time: u64,
};
}

let mut state = State {
last_mouse_xy: PhysicalPosition { x: 0.0, y: 0.0 },
Expand Down

0 comments on commit 75cb088

Please sign in to comment.