diff options
author | Chris Robinson <[email protected]> | 2023-05-23 02:32:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-23 02:32:39 -0700 |
commit | 7f72f83fcb3d463d4e5db5d393fff8606f0e2763 (patch) | |
tree | 76cd9a40b83bca44f2dc931857df4cd483862ec5 /al/error.cpp | |
parent | 85c82693e89a76f17257a2ef8256ca22e5192289 (diff) |
Use a string_view for handling debug messages
Diffstat (limited to 'al/error.cpp')
-rw-r--r-- | al/error.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/al/error.cpp b/al/error.cpp index 3a1a9ac3..9db13947 100644 --- a/al/error.cpp +++ b/al/error.cpp @@ -87,7 +87,8 @@ void ALCcontext::setError(ALenum errorCode, const char *msg, ...) ALenum curerr{AL_NO_ERROR}; mLastError.compare_exchange_strong(curerr, errorCode); - debugMessage(DebugSource::API, DebugType::Error, 0, DebugSeverity::High, msglen, msg); + debugMessage(DebugSource::API, DebugType::Error, 0, DebugSeverity::High, + {msg, static_cast<uint>(msglen)}); } /* Special-case alGetError since it (potentially) raises a debug signal and |