mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Style nits
This commit is contained in:
parent
b2fa47ef43
commit
bdbd3098dd
@ -93,7 +93,7 @@ input_keyboard_line_t *input_keyboard_line_new(void *userdata,
|
|||||||
if (!state)
|
if (!state)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
state->cb = cb;
|
state->cb = cb;
|
||||||
state->userdata = userdata;
|
state->userdata = userdata;
|
||||||
|
|
||||||
input_keyboard_line_toggle_osk(true);
|
input_keyboard_line_toggle_osk(true);
|
||||||
@ -138,7 +138,8 @@ bool input_keyboard_line_event(
|
|||||||
{
|
{
|
||||||
/* Handle left/right here when suitable */
|
/* Handle left/right here when suitable */
|
||||||
|
|
||||||
char *newbuf = (char*)realloc(state->buffer, state->size + 2);
|
char *newbuf = (char*)
|
||||||
|
realloc(state->buffer, state->size + 2);
|
||||||
if (!newbuf)
|
if (!newbuf)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user