testime.c: fix wrong {} in switch

This commit is contained in:
Sylvain 2022-12-15 14:26:18 +01:00
parent 7a9966af9d
commit 8e72be3117
No known key found for this signature in database
GPG key ID: 5F87E02E5BC0939E

View file

@ -689,7 +689,6 @@ int main(int argc, char *argv[])
SDLTest_CommonEvent(state, &event, &done);
switch (event.type) {
case SDL_KEYDOWN:
{
switch (event.key.keysym.sym) {
case SDLK_RETURN:
text[0] = 0x00;
@ -764,7 +763,6 @@ int main(int argc, char *argv[])
cursor = event.edit.start;
Redraw();
break;
} break;
}
}
}