Hopefully this will fix win32 msvc.netsuperduper++220000 extra entropy edition

compilation, and I updated the readme a little apparently.
This commit is contained in:
Zachary Slater 2005-09-26 02:36:52 +00:00
parent ae9fbe3288
commit aff4d7d858
4 changed files with 14 additions and 11 deletions

View file

@ -180,9 +180,9 @@ qhandle_t RE_RegisterModel( const char *name ) {
for ( lod = MD3_MAX_LODS - 1 ; lod >= 0 ; lod-- ) {
if ( lod )
snprintf(namebuf, sizeof(namebuf), "%s_%d.%s", filename, lod, fext);
Com_sprintf(namebuf, sizeof(namebuf), "%s_%d.%s", filename, lod, fext);
else
snprintf(namebuf, sizeof(namebuf), "%s.%s", filename, fext);
Com_sprintf(namebuf, sizeof(namebuf), "%s.%s", filename, fext);
ri.FS_ReadFile( namebuf, (void **)&buf );
if ( !buf ) {