summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/HW/VideoInterface.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/Core/Src/HW/VideoInterface.cpp b/Source/Core/Core/Src/HW/VideoInterface.cpp
index 96cad98a6f..8d52dfaf99 100644
--- a/Source/Core/Core/Src/HW/VideoInterface.cpp
+++ b/Source/Core/Core/Src/HW/VideoInterface.cpp
@@ -282,9 +282,10 @@ void Write32(const u32 _iValue, const u32 _iAddress)
m_FrameBuffer2 = _iValue;
break;
- default:
- PanicAlert("VI unknown write32 %08x to %08x", _iValue, _iAddress);
- break;
+ default:
+ Write16(_iValue >> 16, _iAddress);
+ Write16(_iValue & 0xFFFF, _iAddress + 2);
+ break;
}
}