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:
Kawe Mazidjatari 2024-01-14 02:03:27 +01:00
parent 2a4516f3cb
commit f48bdbfa82

View File

@ -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;