1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 23:56:05 +02:00

Fix incorrect search & replace for "char => char8" in comments

This commit is contained in:
miere43 2021-10-30 00:11:37 +03:00
parent b10edc6f0a
commit c0b787cbf0
12 changed files with 32 additions and 32 deletions

View file

@ -1401,7 +1401,7 @@ namespace IDE
{
if (curColumn == column)
return charId;
// For column == -1, use first non-whitespace char8
// For column == -1, use first non-whitespace char
if ((column == -1) && (!c.IsWhiteSpace))
return charId;
}

View file

@ -1722,7 +1722,7 @@ namespace IDE.ui
if ((!SelectEntry(curString)) && (curString.Length > 0))
{
// If we can't find any matches, at least select a string that starts with the right char8acter
// If we can't find any matches, at least select a string that starts with the right character
curString.RemoveToEnd(1);
SelectEntry(curString);
}

View file

@ -1553,7 +1553,7 @@ namespace IDE.ui
bool inStrView = false;
bool checkSubChar = true;
float testX = curX;
curX += 4; // offset by half a char8acter
curX += 4; // offset by half a character
testX -= GS!(mColumnDisplayStart);
testX /= (float)GS!(mColumnDisplayStride);
if (testX < 0.0f)

View file

@ -4277,7 +4277,7 @@ namespace IDE.ui
if (mProcessingCharData[srcIdx].mCharId != destText[destIdx].mCharId)
{
// Id doesn't match, char8acter must have been deleted
// Id doesn't match, character must have been deleted
srcIdx++;
continue;
}