Fix warning (and make it obvious we're not caring about the return value)

This commit is contained in:
Gwilym Kuiper 2022-06-11 21:02:24 +01:00
parent bbad55af65
commit 8224827f90

View file

@ -2291,7 +2291,7 @@ fn game_with_level(gba: &mut agb::Gba) {
}
}
rng::gen(); // advance RNG to make it less predictable between runs
let _ = rng::gen(); // advance RNG to make it less predictable between runs
};
game.clear(&mut vram);