From 482fcb1877cc4effa80c18abc270316f9c9f324f Mon Sep 17 00:00:00 2001 From: Themaister Date: Tue, 19 Feb 2013 14:47:09 +0100 Subject: [PATCH] Don't use comma at end of enum. --- libretro.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro.h b/libretro.h index 83b0a1fa81..21e24eeeff 100755 --- a/libretro.h +++ b/libretro.h @@ -314,7 +314,7 @@ enum retro_key RETROK_LAST, - RETROK_DUMMY = INT_MAX, // Ensure sizeof(enum) == sizeof(int) + RETROK_DUMMY = INT_MAX // Ensure sizeof(enum) == sizeof(int) }; enum retro_mod @@ -330,7 +330,7 @@ enum retro_mod RETROKMOD_CAPSLOCK = 0x20, RETROKMOD_SCROLLOCK = 0x40, - RETROKMOD_DUMMY = INT_MAX, // Ensure sizeof(enum) == sizeof(int) + RETROKMOD_DUMMY = INT_MAX // Ensure sizeof(enum) == sizeof(int) };