mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Change QFS_Gamedir()'s parameter from dir to gamedir.
This commit is contained in:
parent
745bdfafdf
commit
ba8ca132a9
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue