mirror of https://github.com/PCSX2/pcsx2.git
GSDX: Initialize class members
CID 146973 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)2. uninit_member: Non-static class member overflow is not initialized in this constructor nor in any functions that it calls. 2999}
This commit is contained in:
parent
ffdc914c71
commit
c1f1646dab
|
@ -2994,6 +2994,7 @@ bool GSState::IsMipMapActive()
|
|||
GSState::GSTransferBuffer::GSTransferBuffer()
|
||||
{
|
||||
x = y = 0;
|
||||
overflow = false;
|
||||
start = end = total = 0;
|
||||
buff = (uint8*)_aligned_malloc(1024 * 1024 * 4, 32);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue