Skip to content

Commit

Permalink
Remove unnecessary braces.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkCallow committed Sep 25, 2024
1 parent 12f664c commit b589b98
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/loadtests/appfwSDL/VulkanAppSDL/vulkantextoverlay.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ class VulkanTextOverlay

// Generate a uv mapped quad per char in the new text
it = text.begin();
while (it != text.end()) {
while (it != text.end())
{
if (!advanceUTF8(it, text.end(), codepoint))
break;
Expand Down Expand Up @@ -745,7 +745,6 @@ class VulkanTextOverlay
if (numLetters == MAX_CHAR_COUNT)
break; // Truncate the text.
}
}
}
// Unmap buffer and update command buffers
void endTextUpdate()
Expand Down

0 comments on commit b589b98

Please sign in to comment.