mirror of
https://github.com/love2d/megasource.git
synced 2026-08-18 11:44:19 +02:00
update OpenAL-Soft to 1.24.3.
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
#include <cassert>
|
||||
#include <exception>
|
||||
|
||||
#include "alstring.h"
|
||||
#include "core/logging.h"
|
||||
|
||||
|
||||
@@ -18,9 +17,9 @@ void eax_log_exception(std::string_view message) noexcept
|
||||
std::rethrow_exception(exception_ptr);
|
||||
}
|
||||
catch(const std::exception& ex) {
|
||||
ERR("%.*s %s\n", al::sizei(message), message.data(), ex.what());
|
||||
ERR("{} {}", message, ex.what());
|
||||
}
|
||||
catch(...) {
|
||||
ERR("%.*s %s\n", al::sizei(message), message.data(), "Generic exception.");
|
||||
ERR("{} {}", message, "Generic exception.");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user