mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Complete the previous commit by also removing the inline min and max
functions defined in HeadSpin.h without breaking (3ds)Max compilation
This commit is contained in:
@ -79,7 +79,7 @@ int plBufferedSocketWriter::Flush(plTcpSocket & sck) // this is where things
|
||||
{
|
||||
int ans = kSuccessNoDataSent;
|
||||
|
||||
int writeSize = MIN(FastAmountBuffered(),fBytesPerFlush);
|
||||
int writeSize = std::min(FastAmountBuffered(), fBytesPerFlush);
|
||||
|
||||
if(writeSize > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user