fix truncated pointer

This commit is contained in:
madeline
2026-03-10 16:12:38 -07:00
committed by PJB3005
parent 23b2edafdf
commit 8e69478939
+4
View File
@@ -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);
}