From f1e093a8a0decc0915d885f08c863b281a349947 Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Wed, 8 Mar 2023 12:14:22 +1100 Subject: [PATCH] vst not working was dumb mistake lolllll --- lib/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/src/lib.rs b/lib/src/lib.rs index 0064478..489e92f 100644 --- a/lib/src/lib.rs +++ b/lib/src/lib.rs @@ -62,7 +62,9 @@ impl + Clone> EmulatorCore { output: AudioOutput, tile_window: Option>>, ) -> Self { - VERBOSE.set(options.verbose).unwrap(); + if options.verbose { + VERBOSE.set(true).unwrap(); + } let rom = match options.rom { RomFile::Path(path) => {