Fix field name in rom/storage config struct

This commit is contained in:
pjht 2022-11-11 22:10:58 -06:00
parent 9145c71a34
commit daf6bdc477
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ use crate::{
#[derive(Deserialize)] #[derive(Deserialize)]
struct Config { struct Config {
file_name: Option<String>, image: Option<String>,
} }
#[derive(Debug)] #[derive(Debug)]

View File

@ -16,7 +16,7 @@ const SECTOR_SIZE: usize = 256;
#[derive(Deserialize)] #[derive(Deserialize)]
struct Config { struct Config {
file_name: Option<String>, image: Option<String>,
} }
#[derive(Debug)] #[derive(Debug)]