pass directly instead of ref.

This commit is contained in:
Marvin D 2022-12-22 01:05:39 +01:00
parent 35afca2cf4
commit 89bc31de10

View File

@ -638,8 +638,7 @@ void VPK_Mount_f(const CCommand& args)
return;
}
const char* pArg = args.Arg(1);
FileSystem()->MountVPKFile(pArg);
FileSystem()->MountVPKFile(args.Arg(1));
}
/*
@ -657,8 +656,7 @@ void VPK_Unmount_f(const CCommand& args)
return;
}
const char* pArg = args.Arg(1);
FileSystem()->UnmountVPKFile(pArg);
FileSystem()->UnmountVPKFile(args.Arg(1));
}
/*