瀏覽代碼

Update raygui.h

Ray 11 月之前
父節點
當前提交
1e03efca48
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      src/raygui.h

+ 0 - 2
src/raygui.h

@@ -2657,8 +2657,6 @@ int GuiTextBox(Rectangle bounds, char *text, int textSize, bool editMode)
                         // Move backward text from cursor position
                         for (int i = (textBoxCursorIndex - prevCodepointSize); i < textLength; i++) text[i] = text[i + prevCodepointSize];
 
-                        // TODO Check: i >= (cursor + codepointsize) && (i <= length-codepointsize) ???
-
                         textBoxCursorIndex -= codepointSize;
                         textLength -= codepointSize;
                     }