diff options
| author | Iamgoofball <iamgoofball@gmail.com> | 2018-10-14 17:38:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-14 17:38:54 -0700 |
| commit | 0fab6785e63ce1baa2447a4d6eb08b0db1893112 (patch) | |
| tree | 92bdf2f1932db2b731dabf8a136fb757b266605b | |
| parent | 22640d482550fefec5406f4f819c8452f96be48d (diff) | |
fixes opus courtesy of longbyte1
| -rw-r--r-- | courtroom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/courtroom.cpp b/courtroom.cpp index 352a3da5..43e977be 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); |
