diff --git a/res/start/bg1.png b/res/start/bg1.png index 974f2b9..2fe52f2 100644 Binary files a/res/start/bg1.png and b/res/start/bg1.png differ diff --git a/res/start/logo1.png b/res/start/logo1.png index 62828e4..b4c70ba 100644 Binary files a/res/start/logo1.png and b/res/start/logo1.png differ diff --git a/src/start.h b/src/start.h index e0576cc..a0ff006 100644 --- a/src/start.h +++ b/src/start.h @@ -30,25 +30,23 @@ static void selectStartMenu(){ // draw static void drawStartBg(){ - VDP_fillTileMapRect(BG_B, TILE_ATTR_FULL(PAL2, 0, 0, 0, START_I), 0, 0, START_W, START_H); + VDP_fillTileMapRect(BG_B, TILE_ATTR_FULL(PAL1, 0, 0, 0, START_I), 0, 0, START_W, START_H); } #define LOGO_X 8 -#define LOGO_Y 6 +#define LOGO_Y 7 static void drawStartLogo(){ VDP_drawImageEx(BG_B, &startLogo1, TILE_ATTR_FULL(PAL1, 0, 0, 0, START_I + 32), LOGO_X, LOGO_Y, 0, DMA); } -#define MENU_X 13 -#define MENU_Y 14 -#define ARROW_X 13 +#define MENU_X 7 +#define MENU_Y 17 static void drawStartMenu(){ - // VDP_drawText(">", ARROW_X, MENU_Y); - VDP_drawText("start?", MENU_X, MENU_Y); - VDP_drawText("HOW-TO", MENU_X, MENU_Y + 2); - VDP_drawText("ABOUT!", MENU_X, MENU_Y + 4); + VDP_drawText("PUSH START BUTTON!", MENU_X, MENU_Y); + VDP_drawText("2 MINUTES GAME", MENU_X + 2, MENU_Y + 2); + VDP_drawText("2022 T.BODDY", MENU_X + 3, 26); } @@ -62,7 +60,6 @@ void loadStart(){ // drawStartBg(); // drawStartLogo(); // drawStartMenu(); - // VDP_drawText("VER 0.1", 1, 26); loadGameFromStart();