diff options
author | Zachary J. Slater <zjs@zacharyjackslater.com> | 2015-08-28 10:36:46 -0700 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2016-04-07 11:05:02 +0100 |
commit | eeb8d9fe1eddd1581966bda53ffb9eb1befbeb62 (patch) | |
tree | b5246172765c615792a65b1a46c2a1f0f8ff234b /src/qcommon/files.c | |
parent | e4d1728355ee0c0f702f8c519e643fb6209deca2 (diff) |
more helpful error message
Can’t find your pak0.pk3? Here’s where we tried looking.
Diffstat (limited to 'src/qcommon/files.c')
-rw-r--r-- | src/qcommon/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/files.c b/src/qcommon/files.c index cedbeaf4..0c88cc1f 100644 --- a/src/qcommon/files.c +++ b/src/qcommon/files.c @@ -2705,7 +2705,7 @@ void FS_Path_f( void ) { searchpath_t *s; int i; - Com_Printf ("Current search path:\n"); + Com_Printf ("We tried looking in the current search path:\n"); for (s = fs_searchpaths; s; s = s->next) { if (s->pack) { Com_Printf ("%s (%i files)\n", s->pack->pakFilename, s->pack->numfiles); |