Hello,
*Fixed boolean buglet in the bsp lib. I have not committed any libraries so you'll have to do this to see the changes in blender. *Got the bsp test program working again with the new GHOST createWindow interface. *(Visual C++) Modfied some of the dsp in the intern library to NOT prompt when overwirting old libs and header files. This is the /Y option after XCOPY Cheers Laurence.
This commit is contained in:
@@ -66,7 +66,7 @@ Duplicate(
|
||||
int output = Size();
|
||||
IncSize();
|
||||
|
||||
memcpy(&m_data[ m_data.size() - 1 - m_width ], record, m_width);
|
||||
memcpy(&m_data[ m_data.size() - m_width ], record, m_width);
|
||||
|
||||
return output;
|
||||
}
|
||||
@@ -80,7 +80,7 @@ Duplicate(
|
||||
){
|
||||
if (m_width) {
|
||||
IncSize();
|
||||
memcpy(&m_data[ m_data.size() - 1 - m_width ],
|
||||
memcpy(&m_data[ m_data.size() - m_width ],
|
||||
&m_data[ record_index * m_width], m_width);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user