diff --git a/console/rmenu/images/main-menu.xcf b/console/rmenu/images/main-menu.xcf new file mode 100644 index 0000000000..f9c18f4b70 Binary files /dev/null and b/console/rmenu/images/main-menu.xcf differ diff --git a/console/rmenu/rmenu.c b/console/rmenu/rmenu.c index c22ea40f07..7e06909a31 100644 --- a/console/rmenu/rmenu.c +++ b/console/rmenu/rmenu.c @@ -2538,6 +2538,7 @@ void menu_loop(void) if (message && g_console.info_msg_enable) { + RARCH_LOG("x: %f, y: %f\n", msg_queue_x_position, msg_queue_y_position); render_msg_place_func(msg_queue_x_position, msg_queue_y_position, msg_queue_font_size, WHITE, message); } diff --git a/console/rmenu/rmenu.h b/console/rmenu/rmenu.h index 651936ef5e..161de862c5 100644 --- a/console/rmenu/rmenu.h +++ b/console/rmenu/rmenu.h @@ -60,11 +60,11 @@ #define COMMENT_TWO_Y_POSITION (ypos - ((POSITION_Y_INCREMENT/2) * 1)) #define MSG_QUEUE_X_POSITION POSITION_X -#define MSG_QUEUE_Y_POSITION (ypos - ((POSITION_Y_INCREMENT/2) * 7)) +#define MSG_QUEUE_Y_POSITION (ypos - ((POSITION_Y_INCREMENT/2) * 7) + 5) #define MSG_QUEUE_FONT_SIZE HARDCODE_FONT_SIZE #define MSG_PREV_NEXT_Y_POSITION 24 -#define CURRENT_PATH_Y_POSITION (m_menuMainRomListPos_y) +#define CURRENT_PATH_Y_POSITION (m_menuMainRomListPos_y - ((POSITION_Y_INCREMENT/2))) #endif typedef struct diff --git a/xbox1/Media/menuMainBG.png b/xbox1/Media/menuMainBG.png index e81ea10789..f62a2c3969 100644 Binary files a/xbox1/Media/menuMainBG.png and b/xbox1/Media/menuMainBG.png differ diff --git a/xbox1/xdk_d3d8.cpp b/xbox1/xdk_d3d8.cpp index 0b66cf5e5a..d37f5db9ae 100644 --- a/xbox1/xdk_d3d8.cpp +++ b/xbox1/xdk_d3d8.cpp @@ -474,7 +474,7 @@ static bool xdk_d3d_frame(void *data, const void *frame, } if (msg) - xfonts_render_msg_place(d3d, 100, 390, 0, msg); //TODO: dehardcode x/y here for HD (720p) mode + xfonts_render_msg_place(d3d, 60, 365, 0, msg); //TODO: dehardcode x/y here for HD (720p) mode if(!d3d->block_swap) gfx_ctx_swap_buffers();