From 95f550a55e906b37def63deb1108254542b62c08 Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Sat, 4 Apr 2020 23:14:09 -0500 Subject: [PATCH] Unused imports --- src/writers/graphics_320x200x256.rs | 3 +-- src/writers/graphics_320x240x256.rs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/writers/graphics_320x200x256.rs b/src/writers/graphics_320x200x256.rs index 48cd4ee..43dc28d 100644 --- a/src/writers/graphics_320x200x256.rs +++ b/src/writers/graphics_320x200x256.rs @@ -2,10 +2,9 @@ use super::{GraphicsWriter, Screen}; use crate::{ colors::DEFAULT_PALETTE, drawing::{Bresenham, Point}, - vga::{Vga, VideoMode, VGA}, + vga::{VideoMode, VGA}, }; use font8x8::UnicodeFonts; -use spinning_top::SpinlockGuard; const WIDTH: usize = 320; const HEIGHT: usize = 200; diff --git a/src/writers/graphics_320x240x256.rs b/src/writers/graphics_320x240x256.rs index a3ec1d1..197c4a1 100644 --- a/src/writers/graphics_320x240x256.rs +++ b/src/writers/graphics_320x240x256.rs @@ -3,10 +3,9 @@ use crate::{ colors::DEFAULT_PALETTE, drawing::{Bresenham, Point}, registers::PlaneMask, - vga::{Vga, VideoMode, VGA}, + vga::{VideoMode, VGA}, }; use font8x8::UnicodeFonts; -use spinning_top::SpinlockGuard; const WIDTH: usize = 320; const HEIGHT: usize = 200;