You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Replacement of some hot reload's bool flags with enum class flags.
#rb james.hopkin #jira none [CL 7247552 by Steve Robb in Dev-Core branch]
This commit is contained in:
@@ -289,10 +289,7 @@ FReply SModuleUI::FModuleListItem::OnRecompileClicked()
|
||||
else
|
||||
{
|
||||
// Perform a regular unload, then reload
|
||||
const bool bReloadAfterRecompile = true;
|
||||
const bool bForceCodeProject = false;
|
||||
const bool bFailIfGeneratedCodeChanges = true;
|
||||
const bool bRecompileSucceeded = HotReloadSupport.RecompileModule(ModuleName, bReloadAfterRecompile, *GLog, bFailIfGeneratedCodeChanges, bForceCodeProject);
|
||||
const bool bRecompileSucceeded = HotReloadSupport.RecompileModule(ModuleName, *GLog, ERecompileModuleFlags::ReloadAfterRecompile | ERecompileModuleFlags::FailIfGeneratedCodeChanges);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user