mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-21 19:51:04 +00:00
Remove use (and definition) of MA_VERBOSE macro from Model_ma.cpp
Co-authored-by: Daniel Gibson <metalcaedes@gmail.com>
This commit is contained in:
parent
bcb493732a
commit
640a4a4fb9
1 changed files with 4 additions and 6 deletions
|
@ -40,8 +40,6 @@ If you have questions concerning this license or the applicable additional terms
|
|||
*/
|
||||
|
||||
|
||||
#define MA_VERBOSE( x ) { if ( maGlobal.verbose ) { common->Printf x ; } }
|
||||
|
||||
// working variables used during parsing
|
||||
typedef struct {
|
||||
bool verbose;
|
||||
|
@ -696,10 +694,10 @@ void MA_ParseMesh(idParser& parser) {
|
|||
for(int i = 0; i < pMesh->numVertTransforms; i++) {
|
||||
pMesh->vertexes[(int)pMesh->vertTransforms[i].w] += pMesh->vertTransforms[i].ToVec3();
|
||||
}
|
||||
|
||||
MA_VERBOSE((va("MESH %s - parent %s\n", header.name, header.parent)));
|
||||
MA_VERBOSE((va("\tverts:%d\n",maGlobal.currentObject->mesh.numVertexes)));
|
||||
MA_VERBOSE((va("\tfaces:%d\n",maGlobal.currentObject->mesh.numFaces)));
|
||||
|
||||
common->Printf("MESH %s - parent %s\n", header.name, header.parent);
|
||||
common->Printf("\tverts:%d\n",maGlobal.currentObject->mesh.numVertexes);
|
||||
common->Printf("\tfaces:%d\n",maGlobal.currentObject->mesh.numFaces);
|
||||
}
|
||||
|
||||
void MA_ParseFileNode(idParser& parser) {
|
||||
|
|
Loading…
Reference in a new issue