From a56d9f49ad0c5dc499a9c622a74721af0fc70645 Mon Sep 17 00:00:00 2001 From: zakk Date: Mon, 26 Sep 2005 02:36:52 +0000 Subject: Hopefully this will fix win32 msvc.netsuperduper++220000 extra entropy edition compilation, and I updated the readme a little apparently. git-svn-id: svn://svn.icculus.org/quake3/trunk@109 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/renderer/tr_model.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'code/renderer') diff --git a/code/renderer/tr_model.c b/code/renderer/tr_model.c index 80b8094..d7aad51 100644 --- a/code/renderer/tr_model.c +++ b/code/renderer/tr_model.c @@ -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 ) { -- cgit v1.2.3