Skip to content

Commit

Permalink
Remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
locks committed Jun 26, 2015
1 parent 0e6046a commit 86c7f5c
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/emblem.rs
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
extern crate byteorder;
extern crate image;
extern crate itertools;

use self::byteorder::{ByteOrder, BigEndian};

extern crate image;
use self::image::GenericImage;

extern crate itertools;
use self::itertools::Itertools;

use std::io::prelude::*;
use std::fs::File;
use std::path::Path;
use checksum::checksum;


fn gametitle() -> [u8; 32] {
let mut gametitle: [u8; 32] = [0x00; 32];
let fzgx = "F-Zero GX".as_bytes();
Expand Down

0 comments on commit 86c7f5c

Please sign in to comment.