1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-09-19 16:01:37 +02:00

Linux soundstretch: Fix unhandled exception error

This commit is contained in:
Olli 2024-03-29 19:42:38 +02:00
parent 63002027de
commit 7dce7268cd

View File

@ -307,5 +307,10 @@ int main(int argc, const char* args[])
fprintf(stderr, "%s\n", e.what());
return -1;
}
catch (const string& e)
{
fprintf(stderr, "%s\n", e.c_str());
return -1;
}
return 0;
}