Changeset 314 for GtkRadiant/trunk/tools
- Timestamp:
- 08/25/08 07:32:29 (3 months ago)
- Files:
-
- GtkRadiant/trunk/tools/quake3/common/aselib.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GtkRadiant/trunk/tools/quake3/common/aselib.c
r183 r314 125 125 *cp += 'a' - 'A'; 126 126 } 127 127 128 128 return string; 129 129 } … … 160 160 161 161 strcpy(gl_filename, filename); 162 162 163 163 ASE_Process(); 164 164 } … … 218 218 numFramesInAnimation = maxFrames; 219 219 } 220 else 220 else 221 221 { 222 222 numFramesInAnimation = pObject->anim.numFrames; … … 437 437 // the purpose of this whole chunk of code below is to extract the relative path 438 438 // from a full path in the ASE 439 439 440 440 strcpy( bitmap, s_token + 1 ); 441 441 if ( strchr( bitmap, '"' ) ) … … 660 660 else 661 661 { 662 Error( "Unknown token '%s' while parsing MESH_TVERTLIST" );662 Error( "Unknown token '%s' while parsing MESH_TVERTLIST", token ); 663 663 } 664 664 } … … 804 804 { 805 805 /* 806 if ( strstr( ase.objects[ase.currentObject].name, "tag_" ) == ase.objects[ase.currentObject].name ) 806 if ( strstr( ase.objects[ase.currentObject].name, "tag_" ) == ase.objects[ase.currentObject].name ) 807 807 { 808 808 s_forceStaticMesh = true; … … 819 819 ase.objects[ase.currentObject].numAnimations++; 820 820 /* 821 // ignore meshes that aren't part of animations if this object isn't a 821 // ignore meshes that aren't part of animations if this object isn't a 822 822 // a tag 823 823 else
