commit 5a637caeec83ab5bc5bd70e9bcad259c3ac60809
parent f5843f1fb8c616edcef11cf93ab7a2c1c166d563
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Wed, 5 Jun 2024 22:06:18 +0200
print the used rom in test console
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/source/virusConsoleLib/consoleApp.cpp b/source/virusConsoleLib/consoleApp.cpp
@@ -43,6 +43,8 @@ ConsoleApp::ConsoleApp(const std::string& _romFile)
return;
}
+ std::cout << "Using ROM " << m_rom.getFilename() << '\n';
+
virusLib::DspSingle* dsp1 = nullptr;
virusLib::Device::createDspInstances(dsp1, m_dsp2, m_rom, static_cast<float>(m_rom.getSamplerate()));
m_dsp1.reset(dsp1);