Never commit stuff before testing

This commit is contained in:
Robert Beckebans 2023-04-29 12:22:33 +02:00
parent 03bbf9aaf4
commit edb62c15d9

View file

@ -1406,6 +1406,8 @@ int idFile_Permanent::Write( const void* buffer, int len )
return 0;
}
buf = ( byte* )buffer;
// Chillax
if( buf == NULL )
{
@ -1413,8 +1415,6 @@ int idFile_Permanent::Write( const void* buffer, int len )
return 0;
}
buf = ( byte* )buffer;
remaining = len;
tries = 0;
while( remaining )