(RMenu Xbox 1) Build fix

This commit is contained in:
twinaphex 2012-08-22 15:54:23 +02:00
parent ec4fc43f57
commit 2ab41bbbeb
2 changed files with 4 additions and 3 deletions

View File

@ -148,9 +148,9 @@ static void rmenu_ctx_xdk_set_default_pos(rmenu_default_positions_t *position)
position->current_path_y_position = CURRENT_PATH_Y_POSITION;
position->variable_font_size = FONT_SIZE;
position->entries_per_page = NUM_ENTRY_PER_PAGE;
position->core_msg_x_position = default_pos.x_position;
position->core_msg_y_position = default_pos.msg_prev_next_y_position + 0.01f;
position->core_msg_font_size = default_pos.font_size;
position->core_msg_x_position = position->x_position;
position->core_msg_y_position = position->msg_prev_next_y_position + 0.01f;
position->core_msg_font_size = position->font_size;
}
static void rmenu_ctx_xdk_render_msg(float xpos, float ypos, float scale, unsigned color, const char *msg, ...)

View File

@ -135,6 +135,7 @@ static void system_init(void)
// Mount drives
xbox_io_mount("A:", "cdrom0");
xbox_io_mount("C:", "Harddisk0\\Partition1");
xbox_io_mount("E:", "Harddisk0\\Partition1");
xbox_io_mount("Z:", "Harddisk0\\Partition2");
xbox_io_mount("F:", "Harddisk0\\Partition6");