ZeroEngineVersionWarning
ZeroEngineVersionWarning
#Overview
name: ZeroEngineVersionWarning
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEngine.ini:1435, section: [Core.System]
- INI Section:
Core.System
- Raw value:
True
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/UObject/LinkerLoad.cpp:1425
Scope (from outer to inner):
file
function FLinkerLoad::ELinkerStatus FLinkerLoad::SerializePackageFileSummaryInternal
Source code excerpt:
&& !Summary.SavedByEngineVersion.HasChangelist() && FEngineVersion::Current().HasChangelist())
{
// This warning can be disabled in ini with [Core.System] ZeroEngineVersionWarning=False
static struct FInitZeroEngineVersionWarning
{
bool bDoWarn;
FInitZeroEngineVersionWarning()
{
if (!GConfig->GetBool(TEXT("Core.System"), TEXT("ZeroEngineVersionWarning"), bDoWarn, GEngineIni))
{
bDoWarn = true;
}
}
FORCEINLINE operator bool() const { return bDoWarn; }
} ZeroEngineVersionWarningEnabled;