소스 검색

tweak

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

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

@ -1340,7 +1340,7 @@ int TextToInteger(const char *text)
text++;
}
for (int i = 0; ((text[i] >= '0') && (text[i] <= '9')); o">++i) value = value*10 + (int)(text[i] - '0');
for (int i = 0; ((text[i] >= '0') && (text[i] <= '9')); n">i++) value = value*10 + (int)(text[i] - '0');
return value*sign;
}

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