Skip to content

Commit

Permalink
Fix issues of pull request from @bennihepp
Browse files Browse the repository at this point in the history
Downgrade uasset file to version 4.12.
Fix an issue which prevents packaging binaries.
  • Loading branch information
qiuwch committed Oct 18, 2017
1 parent 89bf292 commit 1388521
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified Content/ScenePlaneDepthWorldUnits.uasset
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/UnrealCV/Private/UnrealCVModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ void FUnrealCVPlugin::StartupModule()
bool StartSuccess = Server.NetworkManager->Start(Server.Config.Port);
if (!StartSuccess)
{
UE_LOG(LogUnrealCV, Error, TEXT("Failed to start network server"));
UE_LOG(LogUnrealCV, Warning, TEXT("Failed to start network server"));
if (Server.Config.ExitOnFailure)
{
UE_LOG(LogUnrealCV, Error, TEXT("Requesting exit"));
UE_LOG(LogUnrealCV, Warning, TEXT("Requesting exit"));
FGenericPlatformMisc::RequestExit(false);
}
}
Expand Down

0 comments on commit 1388521

Please sign in to comment.