Remove left in debug statement
This commit is contained in:
parent
4e814b5009
commit
a16f91648f
@ -144,8 +144,6 @@ pub const fn u16_get_be_byte(val: u16, idx: u8) -> u8 {
|
|||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! register {
|
macro_rules! register {
|
||||||
($typ: ty, $name: literal) => {
|
($typ: ty, $name: literal) => {
|
||||||
paste::paste! {
|
|
||||||
inventory::submit!($crate::card::Type::new::<$typ>($name));
|
inventory::submit!($crate::card::Type::new::<$typ>($name));
|
||||||
}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -51,7 +51,6 @@ fn main() -> Result<(), anyhow::Error> {
|
|||||||
.map_err(|e| anyhow!("Could not read config file ({})", e))?;
|
.map_err(|e| anyhow!("Could not read config file ({})", e))?;
|
||||||
let config: EmuConfig =
|
let config: EmuConfig =
|
||||||
toml::from_str(&config_str).map_err(|e| anyhow!("Could not parse config file ({})", e))?;
|
toml::from_str(&config_str).map_err(|e| anyhow!("Could not parse config file ({})", e))?;
|
||||||
dbg!(&config);
|
|
||||||
let backplane = Backplane::new(config.cards)?;
|
let backplane = Backplane::new(config.cards)?;
|
||||||
let mut symbol_tables = SymbolTables::new();
|
let mut symbol_tables = SymbolTables::new();
|
||||||
if let Some(initial_tables) = config.symbol_tables {
|
if let Some(initial_tables) = config.symbol_tables {
|
||||||
|
Loading…
Reference in New Issue
Block a user