vst not working was dumb mistake lolllll

This commit is contained in:
Alex Janka 2023-03-08 12:14:22 +11:00
parent 43d88de1f2
commit f1e093a8a0

View file

@ -62,7 +62,9 @@ impl<ColourFormat: From<Colour> + Clone> EmulatorCore<ColourFormat> {
output: AudioOutput, output: AudioOutput,
tile_window: Option<Box<dyn Renderer<ColourFormat>>>, tile_window: Option<Box<dyn Renderer<ColourFormat>>>,
) -> Self { ) -> Self {
VERBOSE.set(options.verbose).unwrap(); if options.verbose {
VERBOSE.set(true).unwrap();
}
let rom = match options.rom { let rom = match options.rom {
RomFile::Path(path) => { RomFile::Path(path) => {