From 0fab6785e63ce1baa2447a4d6eb08b0db1893112 Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Sun, 14 Oct 2018 17:38:54 -0700 Subject: [PATCH] fixes opus courtesy of longbyte1 --- courtroom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courtroom.cpp b/courtroom.cpp index 352a3da..43e977b 100644 --- a/courtroom.cpp +++ b/courtroom.cpp @@ -6,7 +6,7 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow() //initializing sound device BASS_Init(-1, 48000, BASS_DEVICE_LATENCY, 0, NULL); - BASS_PluginLoad("bassopus.dll", BASS_UNICODE); + BASS_PluginLoad(L"bassopus.dll", BASS_UNICODE); keepalive_timer = new QTimer(this); keepalive_timer->start(60000);