From 6694c1b281a142972fce587bd20cd82ee65ab38f Mon Sep 17 00:00:00 2001 From: Max Roncace Date: Wed, 18 Mar 2026 01:38:05 -0400 Subject: Fix a bunch of compiler warnings and document several more bugs (#3130) --- src/m_Do/m_Do_dvd_thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/m_Do/m_Do_dvd_thread.cpp') diff --git a/src/m_Do/m_Do_dvd_thread.cpp b/src/m_Do/m_Do_dvd_thread.cpp index 0d9eabfad9..550cb9b587 100644 --- a/src/m_Do/m_Do_dvd_thread.cpp +++ b/src/m_Do/m_Do_dvd_thread.cpp @@ -155,7 +155,7 @@ static void cb(void* param_0) { void mDoDvdThd_param_c::mainLoop() { mDoDvdThd_command_c* command; while (this->waitForKick() != 0) { - while (command = this->getFirstCommand()) { + while ((command = this->getFirstCommand())) { this->cut(command); if (mDoDvdThd::SyncWidthSound) { JASDvd::getThreadPointer()->sendCmdMsg(cb, &command, 4); -- cgit v1.2.3