Change QFS_Gamedir()'s parameter from dir to gamedir.

This commit is contained in:
Bill Currie 2010-08-25 08:25:23 +09:00
parent 745bdfafdf
commit ba8ca132a9
2 changed files with 3 additions and 3 deletions

View file

@ -78,7 +78,7 @@ struct dstring_s;
void QFS_Init (const char *game);
void QFS_Gamedir (const char *dir);
void QFS_Gamedir (const char *gamedir);
QFile *QFS_Open (const char *path, const char *mode);
QFile *QFS_WOpen (const char *path, int zip);

View file

@ -1177,10 +1177,10 @@ QFS_AddGameDirectory (const char *dir)
Sets the gamedir and path to a different directory.
*/
VISIBLE void
QFS_Gamedir (const char *dir)
QFS_Gamedir (const char *gamedir)
{
int i;
const char *list[2] = {dir, 0};
const char *list[2] = {gamedir, 0};
qfs_build_gamedir (list);