From c440be746766d16cdac552d73f0cc823b0bc4111 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Tue, 25 Dec 2018 16:45:51 -0700 Subject: [PATCH] reduce the use visibility --- src/video.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video.rs b/src/video.rs index df13684..54c52f1 100644 --- a/src/video.rs +++ b/src/video.rs @@ -13,7 +13,7 @@ //! they won't bother to check that you've set the video mode they're designed //! for. -pub use super::*; +pub(crate) use super::*; pub mod bitmap; pub mod tiled;