mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-23 03:49:26 +01:00
Full screen
This commit is contained in:
parent
f7ce5a861e
commit
fb7de09d4c
12
Src/menu.cpp
12
Src/menu.cpp
@ -865,7 +865,7 @@ int menu_select_sized(const char *title, const char **msgs, int *submenus, int s
|
|||||||
static int menu_select(const char *title, const char **msgs, int *submenus, int sel)
|
static int menu_select(const char *title, const char **msgs, int *submenus, int sel)
|
||||||
{
|
{
|
||||||
return menu_select_sized(title, msgs, submenus, sel,
|
return menu_select_sized(title, msgs, submenus, sel,
|
||||||
32, 32, FULL_DISPLAY_X-64, FULL_DISPLAY_Y-64);
|
0, 0, FULL_DISPLAY_X, FULL_DISPLAY_Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
int menu_select(const char **msgs, int *submenus)
|
int menu_select(const char **msgs, int *submenus)
|
||||||
@ -880,7 +880,7 @@ static void d64_list_cb(menu_t *p, void *data)
|
|||||||
const char *dp = (const char*)data;
|
const char *dp = (const char*)data;
|
||||||
const char *exts[] = {".d64", ".D64", NULL};
|
const char *exts[] = {".d64", ".D64", NULL};
|
||||||
const char *name = p->pp_msgs[p->cur_sel];
|
const char *name = p->pp_msgs[p->cur_sel];
|
||||||
SDL_Rect r = {FULL_DISPLAY_X / 2, 32,
|
SDL_Rect r = {FULL_DISPLAY_X / 2, 0,
|
||||||
FULL_DISPLAY_X / 2, FULL_DISPLAY_Y};
|
FULL_DISPLAY_X / 2, FULL_DISPLAY_Y};
|
||||||
|
|
||||||
SDL_FillRect(real_screen, &r, SDL_MapRGB(real_screen->format, 0x00, 0x90, 0x90));
|
SDL_FillRect(real_screen, &r, SDL_MapRGB(real_screen->format, 0x00, 0x90, 0x90));
|
||||||
@ -896,8 +896,8 @@ static void d64_list_cb(menu_t *p, void *data)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
menu_init(&menu, "D64 contents", menu_font, dir,
|
menu_init(&menu, "D64 contents", menu_font, dir,
|
||||||
FULL_DISPLAY_X / 2, 32,
|
FULL_DISPLAY_X / 2, 0,
|
||||||
FULL_DISPLAY_X - 64, FULL_DISPLAY_Y - 64);
|
FULL_DISPLAY_X, FULL_DISPLAY_Y);
|
||||||
menu_draw(real_screen, &menu, 0);
|
menu_draw(real_screen, &menu, 0);
|
||||||
menu_fini(&menu);
|
menu_fini(&menu);
|
||||||
|
|
||||||
@ -1009,7 +1009,7 @@ static const char *menu_select_file_internal(const char *dir_path,
|
|||||||
const char *menu_select_file_start(const char *dir_path, const char **d64_name)
|
const char *menu_select_file_start(const char *dir_path, const char **d64_name)
|
||||||
{
|
{
|
||||||
const char *file = menu_select_file_internal(dir_path,
|
const char *file = menu_select_file_internal(dir_path,
|
||||||
32, 32, FULL_DISPLAY_X/2, FULL_DISPLAY_Y-64);
|
0, 0, FULL_DISPLAY_X/2, FULL_DISPLAY_Y);
|
||||||
|
|
||||||
if (!file)
|
if (!file)
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -1021,7 +1021,7 @@ const char *menu_select_file_start(const char *dir_path, const char **d64_name)
|
|||||||
const char *menu_select_file(const char *dir_path)
|
const char *menu_select_file(const char *dir_path)
|
||||||
{
|
{
|
||||||
return menu_select_file_internal(dir_path,
|
return menu_select_file_internal(dir_path,
|
||||||
32, 32, FULL_DISPLAY_X/2, FULL_DISPLAY_Y-64);
|
0, 0, FULL_DISPLAY_X/2, FULL_DISPLAY_Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
static TTF_Font *read_font(const char *path)
|
static TTF_Font *read_font(const char *path)
|
||||||
|
Loading…
Reference in New Issue
Block a user