diff options
| author | Dan Engelbrecht <[email protected]> | 2026-04-13 19:17:09 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-04-13 19:17:09 +0200 |
| commit | 3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7 (patch) | |
| tree | 8d24babc8cd3d097800af0bd960c7ba1d72927d7 /src/zenhorde/hordeagent.cpp | |
| parent | use mimalloc by default (#952) (diff) | |
| download | zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.tar.xz zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.zip | |
fix utf characters in source code (#953)
Diffstat (limited to 'src/zenhorde/hordeagent.cpp')
| -rw-r--r-- | src/zenhorde/hordeagent.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/zenhorde/hordeagent.cpp b/src/zenhorde/hordeagent.cpp index 275f5bd4c..41dc8c96c 100644 --- a/src/zenhorde/hordeagent.cpp +++ b/src/zenhorde/hordeagent.cpp @@ -225,7 +225,7 @@ AsyncHordeAgent::DoUploadNext() if (m_CurrentBundleIndex >= m_Config.Bundles.size()) { - // All bundles uploaded — proceed to execute + // All bundles uploaded - proceed to execute m_State = State::Executing; DoExecute(); return; @@ -258,7 +258,7 @@ AsyncHordeAgent::OnUploadResponse(AgentMessageType Type, const uint8_t* Data, si Finish(false); return; } - // Timeout — retry read + // Timeout - retry read auto Self = shared_from_this(); m_ChildChannel->AsyncReadResponse(1000, [this, Self](AgentMessageType Type, const uint8_t* Data, size_t Size) { OnUploadResponse(Type, Data, Size); @@ -268,7 +268,7 @@ AsyncHordeAgent::OnUploadResponse(AgentMessageType Type, const uint8_t* Data, si if (Type == AgentMessageType::WriteFilesResponse) { - // This bundle upload is done — move to next + // This bundle upload is done - move to next ++m_CurrentBundleIndex; DoUploadNext(); return; @@ -391,7 +391,7 @@ AsyncHordeAgent::OnPollResponse(AgentMessageType Type, const uint8_t* Data, size } else { - // Timeout — poll again + // Timeout - poll again DoPoll(); } break; |