Browse Source

Fixed autobreak after ImGui cleanup

pull/1388/head^2
aMannus 7 months ago committed by briaguya
parent
commit
f1dc980de8
  1. 2
      soh/soh/UIWidgets.cpp

2
soh/soh/UIWidgets.cpp

@ -25,7 +25,7 @@ namespace UIWidgets { @@ -25,7 +25,7 @@ namespace UIWidgets {
std::string newText(text);
const size_t tipLength = newText.length();
int lastSpace = -1;
size_t currentLineLength = 0;
int currentLineLength = 0;
for (unsigned int currentCharacter = 0; currentCharacter < tipLength; currentCharacter++) {
if (newText[currentCharacter] == '\n') {
currentLineLength = 0;

Loading…
Cancel
Save