mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
pass directly instead of ref.
This commit is contained in:
parent
35afca2cf4
commit
89bc31de10
@ -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));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user