From 8b8f1578ceea3b2b49e43b75c44293a68115dda0 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Mon, 4 Mar 2024 10:22:30 -0700 Subject: [PATCH] Closes https://github.com/rust-console/gba/issues/173 --- src/mmio.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mmio.rs b/src/mmio.rs index 49e605ac..a392bb27 100644 --- a/src/mmio.rs +++ b/src/mmio.rs @@ -25,9 +25,9 @@ //! declarations are simply incorrect. use core::{ffi::c_void, mem::size_of}; -use bitfrob::u8x2; -use voladdress::{Safe, Unsafe, VolAddress, VolBlock, VolSeries, VolGrid2dStrided, VolGrid2d}; use crate::prelude::*; +pub use bitfrob::u8x2; +pub use voladdress::{Safe, Unsafe, VolAddress, VolBlock, VolSeries, VolGrid2dStrided, VolGrid2d}; // Note(Lokathor): This macro lets us stick each address at the start of the // definition, which lets us easily keep each declaration in address order.