use proper Character size in default

This commit is contained in:
jake 2019-12-11 23:31:32 -08:00
parent e445db9aed
commit 9f3e165633

View File

@ -136,7 +136,7 @@ impl Character {
impl std::default::Default for Character {
fn default() -> Character {
Character::from_bytes(&mut std::io::Cursor::new([0; 0x2000].to_vec())).unwrap()
Character::from_bytes(&mut std::io::Cursor::new([0; 0x190].to_vec())).unwrap()
}
}