Remove fere_affine_matricies for now

This commit is contained in:
Gwilym Kuiper 2022-03-23 20:43:54 +00:00
parent 1f053c987a
commit ca57b61525

View file

@ -335,7 +335,6 @@ impl Drop for Loan<'_> {
}
pub struct ObjectController {
free_affine_matricies: RefCell<Vec<u8>>,
free_objects: RefCell<Vec<u8>>,
sprite_controller: SpriteController,
}
@ -356,7 +355,6 @@ impl ObjectController {
Self {
free_objects: RefCell::new((0..128).collect()),
free_affine_matricies: RefCell::new((0..32).collect()),
sprite_controller: SpriteController::new(),
}
}