From 24e650d7baa7639c4d83a738071726bbfc9a868f Mon Sep 17 00:00:00 2001 From: madeline Date: Tue, 10 Mar 2026 16:12:38 -0700 Subject: [PATCH] fix truncated pointer --- src/m_Do/m_Do_dvd_thread.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/m_Do/m_Do_dvd_thread.cpp b/src/m_Do/m_Do_dvd_thread.cpp index 526b5a255e..6ea1cf99f7 100644 --- a/src/m_Do/m_Do_dvd_thread.cpp +++ b/src/m_Do/m_Do_dvd_thread.cpp @@ -159,7 +159,11 @@ void mDoDvdThd_param_c::mainLoop() { while (command = this->getFirstCommand()) { this->cut(command); if (mDoDvdThd::SyncWidthSound) { + #if TARGET_PC + JASDvd::getThreadPointer()->sendCmdMsg(cb, &command, sizeof(void*)); + #else JASDvd::getThreadPointer()->sendCmdMsg(cb, &command, 4); + #endif } else { cb(&command); }