From e488c3081df8850d730c39cb9128fa0a727650a8 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 11 Dec 2011 13:14:44 +0100 Subject: [PATCH] Small nit. --- ps3/ps3_input.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ps3/ps3_input.c b/ps3/ps3_input.c index c417b9936f..3db8b90ad0 100644 --- a/ps3/ps3_input.c +++ b/ps3/ps3_input.c @@ -111,7 +111,7 @@ static void* ps3_input_init(void) static bool ps3_key_pressed(void *data, int key) { (void)data; - switch(key) + switch (key) { case SSNES_FAST_FORWARD_HOLD_KEY: return CTRL_RSTICK_UP(state[0]) && CTRL_R2(~state[0]); @@ -140,3 +140,4 @@ const input_driver_t input_ps3 = { .free = ps3_free_input, .ident = "ps3", }; +