mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Engine: fix compiler warning caused by empty control statement
Remove trailing ';', else this branch wouldn't even be compiled in.
This commit is contained in:
parent
2a4516f3cb
commit
f48bdbfa82
@ -644,7 +644,7 @@ void VPK_Pack_f(const CCommand& args)
|
||||
|
||||
const char* workspacePath = fs_packedstore_workspace->GetString();
|
||||
|
||||
if (!FileSystem()->IsDirectory(workspacePath, "PLATFORM"));
|
||||
if (!FileSystem()->IsDirectory(workspacePath, "PLATFORM"))
|
||||
{
|
||||
Error(eDLL_T::FS, NO_ERROR, "Workspace path \"%s\" doesn't exist!\n", workspacePath);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user