Minor fixes

This commit is contained in:
transistor 2022-09-13 16:57:56 -07:00
parent c161fe5eb9
commit a39557e233
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ use moa::machines::genesis::{build_genesis, SegaGenesisOptions};
fn main() {
let matches = moa_minifb::new("Sega Genesis/Mega Drive Emulator")
.arg(Arg::new("ROM")
.help("ROM file to load (must be flat binary)"))
.about("ROM file to load (must be flat binary)"))
.get_matches();
let mut options = SegaGenesisOptions::new();

View File

@ -11,7 +11,7 @@ use moa::error::Error;
use moa::system::System;
use moa::devices::Clock;
use moa::host::traits::{Host, HostData, ControllerUpdater, KeyboardUpdater, WindowUpdater, Audio};
use moa::host::controllers::{ControllerDevice};
use moa::host::controllers::ControllerDevice;
use moa_common::audio::{AudioOutput, AudioMixer, AudioSource};
@ -183,7 +183,7 @@ impl MiniFrontend {
controller,
keyboard,
audio: None,
mixer: mixer,
mixer,
}
}