mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
satisfy linter
This commit is contained in:
parent
f8fb6ba7b4
commit
47f8ee5b70
|
@ -13,7 +13,7 @@ struct Vector2D {
|
|||
#[no_mangle]
|
||||
pub fn main() -> ! {
|
||||
let mut gba = agb::Gba::new();
|
||||
let mut vblank = agb::interrupt::VBlank::new();
|
||||
let vblank = agb::interrupt::VBlank::new();
|
||||
let mut input = agb::input::ButtonController::new();
|
||||
|
||||
loop {
|
||||
|
|
|
@ -4,8 +4,6 @@
|
|||
extern crate agb;
|
||||
#[no_mangle]
|
||||
pub fn main() -> ! {
|
||||
let mut gba = agb::Gba::new();
|
||||
|
||||
let vblank = agb::interrupt::VBlank::new();
|
||||
|
||||
let mut count = 0;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
extern crate agb;
|
||||
|
||||
use agb::{
|
||||
display::{example_logo, tiled0::Background},
|
||||
display::example_logo,
|
||||
interrupt::{Interrupt, Mutex},
|
||||
number::FixedNum,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue