mirror of
https://github.com/libretro/RetroArch
synced 2025-04-11 00:44:20 +00:00
(RARCH_CONSOLE) Rename and relocate all menu files
This commit is contained in:
parent
1a0c3ead4d
commit
a925f3ca9f
@ -332,7 +332,7 @@ DYNAMIC
|
||||
FILE
|
||||
============================================================ */
|
||||
#ifdef HAVE_FILEBROWSER
|
||||
#include "../fileio/file_browser.c"
|
||||
#include "../../frontend/menu/utils/file_browser.c"
|
||||
#endif
|
||||
#include "../../file.c"
|
||||
#include "../../file_path.c"
|
||||
@ -403,17 +403,17 @@ SCREENSHOTS
|
||||
MENU
|
||||
============================================================ */
|
||||
#if defined(HAVE_RMENU_GUI)
|
||||
#include "../rmenu/rmenu_stack.c"
|
||||
#include "../rmenu/rmenu.c"
|
||||
#include "../../frontend/menu/utils/menu_stack.c"
|
||||
#include "../../frontend/menu/rmenu.c"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_RGUI
|
||||
#include "../rgui/rgui.c"
|
||||
#include "../rgui/list.c"
|
||||
#include "../../frontend/menu/utils/file_list.c"
|
||||
#include "../../frontend/menu/rgui.c"
|
||||
#endif
|
||||
|
||||
#if defined(_XBOX360)
|
||||
#include "../../360/frontend-xdk/menu.cpp"
|
||||
#include "../../frontend/menu/rmenu_xui.cpp"
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -13,17 +13,18 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rgui.h"
|
||||
#include "list.h"
|
||||
#include "../rarch_console_video.h"
|
||||
#include "../../gfx/fonts/bitmap.h"
|
||||
#include "../../screenshot.h"
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "rgui.h"
|
||||
#include "utils/file_list.h"
|
||||
#include "../../console/rarch_console_video.h"
|
||||
#include "../../gfx/fonts/bitmap.h"
|
||||
#include "../../screenshot.h"
|
||||
|
||||
#define TERM_START_X 15
|
||||
#define TERM_START_Y 27
|
||||
#define TERM_WIDTH (((RGUI_WIDTH - TERM_START_X - 15) / (FONT_WIDTH_STRIDE)))
|
@ -14,6 +14,10 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rmenu.h"
|
||||
#include "utils/file_browser.h"
|
||||
#include "utils/menu_stack.h"
|
||||
|
||||
#if defined(__CELLOS_LV2__)
|
||||
#include <sdk_version.h>
|
||||
|
||||
@ -23,8 +27,6 @@
|
||||
|
||||
#endif
|
||||
|
||||
#include "../../console/fileio/file_browser.h"
|
||||
|
||||
#include "../../console/rarch_console.h"
|
||||
#include "../../console/rarch_console_rom_ext.h"
|
||||
#include "../../console/rarch_console_input.h"
|
||||
@ -44,7 +46,6 @@
|
||||
#include "../../file.h"
|
||||
#include "../../general.h"
|
||||
|
||||
#include "rmenu.h"
|
||||
|
||||
rmenu_state_t rmenu_state;
|
||||
|
@ -18,6 +18,9 @@
|
||||
#include <crtdefs.h>
|
||||
#include <tchar.h>
|
||||
#include <xtl.h>
|
||||
|
||||
#include "rmenu_xui.h"
|
||||
|
||||
#include "../../console/fileio/file_browser.h"
|
||||
|
||||
#include "../../console/rarch_console.h"
|
||||
@ -28,7 +31,6 @@
|
||||
#include "../../gfx/gfx_context.h"
|
||||
|
||||
#include "../../xdk/xdk_d3d.h"
|
||||
#include "menu.h"
|
||||
#include "../../message.h"
|
||||
|
||||
#include "../../general.h"
|
@ -14,8 +14,8 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _MENU_XUI_H_
|
||||
#define _MENU_XUI_H_
|
||||
#ifndef _RMENU_XUI_H_
|
||||
#define _RMENU_XUI_H_
|
||||
|
||||
#include <xui.h>
|
||||
#include <xuiapp.h>
|
@ -14,6 +14,8 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include "file_browser.h"
|
||||
|
||||
static bool filebrowser_parse_directory(void *data, unsigned stack_size,
|
@ -17,9 +17,7 @@
|
||||
#ifndef FILEBROWSER_H_
|
||||
#define FILEBROWSER_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include "../../general.h"
|
||||
#include "../../../general.h"
|
||||
|
||||
typedef struct
|
||||
{
|
@ -13,12 +13,14 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "list.h"
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
|
||||
#include "file_list.h"
|
||||
#include "../rgui.h"
|
||||
|
||||
struct rgui_file
|
||||
{
|
||||
char *path;
|
@ -16,9 +16,6 @@
|
||||
#ifndef RGUI_LIST_H__
|
||||
#define RGUI_LIST_H__
|
||||
|
||||
#include "rgui.h"
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
@ -14,8 +14,11 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "rmenu_stack.h"
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "menu_stack.h"
|
||||
|
||||
static unsigned char menu_stack_enum_array[10];
|
||||
static unsigned stack_idx = 0;
|
@ -22,7 +22,7 @@
|
||||
|
||||
#include "platform_inl.h"
|
||||
|
||||
#include "../../console/rgui/rgui.h"
|
||||
#include "../menu/rgui.h"
|
||||
|
||||
#ifndef IS_SALAMANDER
|
||||
#include "../../gfx/fonts/bitmap.h"
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "../../general.h"
|
||||
#include "../../file.h"
|
||||
|
||||
#include "../../console/rmenu/rmenu.h"
|
||||
#include "../menu/rmenu.h"
|
||||
|
||||
#define EMULATOR_CONTENT_DIR "SSNE10000"
|
||||
|
||||
|
@ -25,9 +25,9 @@
|
||||
|
||||
#if defined(_XBOX360)
|
||||
#include <xfilecache.h>
|
||||
#include "../../360/frontend-xdk/menu.h"
|
||||
#include "../menu/menu_xui.h"
|
||||
#elif defined(_XBOX1)
|
||||
#include "../../console/rmenu/rmenu.h"
|
||||
#include "../menu/rmenu.h"
|
||||
#endif
|
||||
|
||||
#include <xbdm.h>
|
||||
|
@ -24,7 +24,7 @@
|
||||
#endif
|
||||
|
||||
#if defined(RARCH_CONSOLE) || defined(HAVE_RMENU)
|
||||
#include "../console/rmenu/rmenu.h"
|
||||
#include "../frontend/menu/rmenu.h"
|
||||
#endif
|
||||
|
||||
#define MAX_EGLIMAGE_TEXTURES 32
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include "../general.h"
|
||||
#include "../console/rarch_console_video.h"
|
||||
#include "../gfx/fonts/bitmap.h"
|
||||
#include "../console/rgui/rgui.h"
|
||||
#include "../frontend/menu/rgui.h"
|
||||
#include "../gfx/gfx_common.h"
|
||||
|
||||
#ifdef HW_RVL
|
||||
|
Loading…
x
Reference in New Issue
Block a user