Forráskód Böngészése

Removed unpaired multi-line comment end (#497)

An unpaired multi-line comment end found it's way infront of a comment. I simply removed it.
Brian E 1 hónapja
szülő
commit
be051532d3
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/raygui.h

+ 1 - 1
src/raygui.h

@@ -5961,7 +5961,7 @@ static int GetCodepointNext(const char *text, int *codepointSize)
     }
     }
     else if (0xe0 == (0xf0 & ptr[0]))
     else if (0xe0 == (0xf0 & ptr[0]))
     {
     {
-        // 3 byte UTF-8 codepoint */
+        // 3 byte UTF-8 codepoint
         if (((ptr[1] & 0xC0) ^ 0x80) || ((ptr[2] & 0xC0) ^ 0x80)) { return codepoint; } //10xxxxxx checks
         if (((ptr[1] & 0xC0) ^ 0x80) || ((ptr[2] & 0xC0) ^ 0x80)) { return codepoint; } //10xxxxxx checks
         codepoint = ((0x0f & ptr[0]) << 12) | ((0x3f & ptr[1]) << 6) | (0x3f & ptr[2]);
         codepoint = ((0x0f & ptr[0]) << 12) | ((0x3f & ptr[1]) << 6) | (0x3f & ptr[2]);
         *codepointSize = 3;
         *codepointSize = 3;