From b83bce794fece81ed2d7ebf6ef3a8969aff241b3 Mon Sep 17 00:00:00 2001 From: Themaister Date: Tue, 25 Feb 2014 19:06:02 +0100 Subject: [PATCH] Use consistent casing for some menu entries. Convention so far is casing every word. --- frontend/menu/menu_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/menu/menu_common.c b/frontend/menu/menu_common.c index c82a1e800b..c89fbcb8fe 100644 --- a/frontend/menu/menu_common.c +++ b/frontend/menu/menu_common.c @@ -1894,8 +1894,8 @@ void menu_populate_entries(void *data, unsigned menu_type) #if defined(HAVE_THREADS) file_list_push(rgui->selection_buf, "SRAM Autosave", RGUI_SETTINGS_SRAM_AUTOSAVE, 0); #endif - file_list_push(rgui->selection_buf, "Window compositing", RGUI_SETTINGS_WINDOW_COMPOSITING_ENABLE, 0); - file_list_push(rgui->selection_buf, "Window unfocus pause", RGUI_SETTINGS_PAUSE_IF_WINDOW_FOCUS_LOST, 0); + file_list_push(rgui->selection_buf, "Window Compositing", RGUI_SETTINGS_WINDOW_COMPOSITING_ENABLE, 0); + file_list_push(rgui->selection_buf, "Window Unfocus Pause", RGUI_SETTINGS_PAUSE_IF_WINDOW_FOCUS_LOST, 0); file_list_push(rgui->selection_buf, "Savestate Autosave On Exit", RGUI_SETTINGS_SAVESTATE_AUTO_SAVE, 0); file_list_push(rgui->selection_buf, "Savestate Autoload", RGUI_SETTINGS_SAVESTATE_AUTO_LOAD, 0); break;