Fix uninitialized var. (nw)

This commit is contained in:
couriersud 2015-01-31 20:29:18 +01:00
parent 9eb833d795
commit e6fb1b8b66

View File

@ -1678,7 +1678,7 @@ READ32_MEMBER(cobra_state::sub_mainbd_r)
// Register 0x7E380000
// M2S FIFO read
UINT64 value;
UINT64 value = 0;
m_m2sfifo->pop(&space.device(), &value);
r |= (value & 0xff) << 24;