*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:
Francis Laurence
2003-01-12 19:48:53 +00:00
parent 040797ba3d
commit c6a905f7e9
15 changed files with 122 additions and 80 deletions

View File

@@ -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);
}
}