diff --git a/src/audio_core/openal_sink.cpp b/src/audio_core/openal_sink.cpp index 3129910fd..9f9941f63 100644 --- a/src/audio_core/openal_sink.cpp +++ b/src/audio_core/openal_sink.cpp @@ -73,8 +73,9 @@ OpenALSink::OpenALSink(std::string device_name) : impl(std::make_unique()) auto alBufferCallbackSOFT = reinterpret_cast(alGetProcAddress("alBufferCallbackSOFT")); - alBufferCallbackSOFT(impl->buffer, AL_FORMAT_STEREO16, native_sample_rate, &Impl::Callback, - impl.get()); + alBufferCallbackSOFT(impl->buffer, AL_FORMAT_STEREO16, native_sample_rate, + reinterpret_cast(&Impl::Callback), impl.get()); + if (alGetError() != AL_NO_ERROR) { LOG_CRITICAL(Audio_Sink, "alBufferCallbackSOFT failed: {}", alGetError()); Close(); diff --git a/src/citra_qt/util/graphics_device_info.cpp b/src/citra_qt/util/graphics_device_info.cpp index f4997b284..8653ba8bd 100644 --- a/src/citra_qt/util/graphics_device_info.cpp +++ b/src/citra_qt/util/graphics_device_info.cpp @@ -22,7 +22,8 @@ QString GetOpenGLRenderer() { QOpenGLContext context; if (context.create()) { context.makeCurrent(&surface); - return QString::fromUtf8(context.functions()->glGetString(GL_RENDERER)); + return QString::fromUtf8( + reinterpret_cast(context.functions()->glGetString(GL_RENDERER))); } else { return QStringLiteral(""); } diff --git a/src/core/hle/service/soc/soc_u.cpp b/src/core/hle/service/soc/soc_u.cpp index 810b4c41e..ae2ecfcb2 100644 --- a/src/core/hle/service/soc/soc_u.cpp +++ b/src/core/hle/service/soc/soc_u.cpp @@ -2251,7 +2251,7 @@ std::optional SOC_U::GetDefaultInterfaceInfo() { socklen_t s_info_len = sizeof(struct sockaddr_in); sockaddr_in s_info; - if ((sock_fd = ::socket(AF_INET, SOCK_STREAM, 0)) == -1) { + if (static_cast(sock_fd = ::socket(AF_INET, SOCK_STREAM, 0)) == -1) { return std::nullopt; } @@ -2269,7 +2269,7 @@ std::optional SOC_U::GetDefaultInterfaceInfo() { #ifdef _WIN32 sock_fd = WSASocket(AF_INET, SOCK_DGRAM, 0, 0, 0, 0); - if (sock_fd == SOCKET_ERROR) { + if (static_cast(sock_fd) == SOCKET_ERROR) { return std::nullopt; }