mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-02 08:51:57 +00:00
Comment out two noisy assertions
they spam the console in debug builds (at least on my system)
This commit is contained in:
parent
2c4db750b7
commit
af67d970c5
1 changed files with 2 additions and 2 deletions
|
@ -343,7 +343,7 @@ void* idVertexBuffer::MapBuffer( bufferMapType_t mapType ) const
|
|||
{
|
||||
buffer = ( byte* )buffer + GetOffset();
|
||||
}
|
||||
assert( IsWriteCombined( buffer ) );
|
||||
// assert( IsWriteCombined( buffer ) ); // commented out because it spams the console
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -619,7 +619,7 @@ void* idIndexBuffer::MapBuffer( bufferMapType_t mapType ) const
|
|||
{
|
||||
buffer = ( byte* )buffer + GetOffset();
|
||||
}
|
||||
assert( IsWriteCombined( buffer ) );
|
||||
// assert( IsWriteCombined( buffer ) ); // commented out because it spams the console
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue