mirror of https://github.com/encounter/SDL.git
Fixed compile warning in IME test program.
This commit is contained in:
parent
b2445f7bbd
commit
1e2a4439a3
|
@ -289,7 +289,7 @@ int main(int argc, char *argv[]) {
|
||||||
break;
|
break;
|
||||||
case SDLK_BACKSPACE:
|
case SDLK_BACKSPACE:
|
||||||
{
|
{
|
||||||
int textlen=SDL_strlen(text);
|
size_t textlen = SDL_strlen(text);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (textlen==0)
|
if (textlen==0)
|
||||||
|
|
Loading…
Reference in New Issue