s.SkipChangelistCompatibilityVersionCheck
s.SkipChangelistCompatibilityVersionCheck
#Overview
name: s.SkipChangelistCompatibilityVersionCheck
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If true, engine version compatibility checks will not use changelist numbers to determine compatibility. NOTE: Changelist compatibility checks are automatically skipped in licensee builds.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/Misc/EngineVersion.cpp:18
Scope: file
Source code excerpt:
int32 GSkipChangelistCompatibilityVersionCheck = 0;
static FAutoConsoleVariableRef CSkipChangelistCompatibilityVersionCheck(
TEXT("s.SkipChangelistCompatibilityVersionCheck"),
GSkipChangelistCompatibilityVersionCheck,
TEXT("If true, engine version compatibility checks will not use changelist numbers to determine compatibility. NOTE: Changelist compatibility checks are automatically skipped in licensee builds."),
ECVF_Default);
FEngineVersionBase::FEngineVersionBase(uint16 InMajor, uint16 InMinor, uint16 InPatch, uint32 InChangelist)
: Major(InMajor)