Merge pull request #1947 from RadWolfie/fix-pr-1945-normalize
HOTFIX: PR 1945 Normalize
This commit is contained in:
commit
615b702cde
|
@ -382,14 +382,14 @@ void CxbxVertexBufferConverter::ConvertStream
|
|||
pNewHostVertexBuffer = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
// If dwHostVertexDataSize is zero, the allocation/creation will fail
|
||||
// This can be caused by a stride of 0, and 'other' invalid configurations
|
||||
// Test Case :SSX series of games
|
||||
if (dwHostVertexDataSize == 0) {
|
||||
LOG_TEST_CASE("Attempted to use a 0 sized vertex stream");
|
||||
return;
|
||||
}
|
||||
|
||||
// If dwHostVertexDataSize is zero, the allocation/creation will fail
|
||||
// This can be caused by a stride of 0, and 'other' invalid configurations
|
||||
// Test Case :SSX series of games
|
||||
if (dwHostVertexDataSize == 0) {
|
||||
LOG_TEST_CASE("Attempted to use a 0 sized vertex stream");
|
||||
return;
|
||||
}
|
||||
|
||||
// Allocate new buffers
|
||||
if (pDrawContext->pXboxVertexStreamZeroData != xbnullptr) {
|
||||
|
@ -398,7 +398,7 @@ void CxbxVertexBufferConverter::ConvertStream
|
|||
if (pHostVertexData == nullptr) {
|
||||
CxbxKrnlCleanup("Couldn't allocate the new stream zero buffer");
|
||||
}
|
||||
} else {
|
||||
} else {
|
||||
HRESULT hRet = g_pD3DDevice->CreateVertexBuffer(
|
||||
dwHostVertexDataSize,
|
||||
D3DUSAGE_WRITEONLY | D3DUSAGE_DYNAMIC,
|
||||
|
|
Loading…
Reference in New Issue