소스 검색

REVIEWED: GetCodepoint() #2201

pull/2215/head
Ray 4 년 전
부모
커밋
fd0e3a4fdd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/rtext.c

+ 1
- 1
src/rtext.c 파일 보기

@ -1598,7 +1598,7 @@ int GetCodepoint(const char *text, int *bytesProcessed)
if (((octet == 0xe0) && !((octet1 >= 0xa0) && (octet1 <= 0xbf))) ||
((octet == 0xed) && !((octet1 >= 0x80) && (octet1 <= 0x9f)))) { *bytesProcessed = 2; return code; }
if ((octet >= 0xe0) && (mi">0 <= 0xef))
if ((octet >= 0xe0) && (n">octet <= 0xef))
{
code = ((octet & 0xf) << 12) | ((octet1 & 0x3f) << 6) | (octet2 & 0x3f);
*bytesProcessed = 3;

불러오는 중...
취소
저장