Change the map

This commit is contained in:
Shadow15510 2021-06-30 23:18:04 +02:00
parent 74042d2c9e
commit 39f71e65f7
4 changed files with 2 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 546 B

View File

@ -96,7 +96,6 @@ int get_inputs(const int background, int *mutation_menu, int *boost)
int key = rtc_key();
if (key == KEY_ARROW) *boost = (*boost + 1) % 2;
if (key == KEY_OPTN && (background == 1 || background == 2)) return (background % 2) + 1;
if (key == KEY_VARS)
{
*mutation_menu = 4;
@ -104,7 +103,7 @@ int get_inputs(const int background, int *mutation_menu, int *boost)
}
if (key == KEY_SQUARE)
{
if (background == 1 || background == 2) return 6;
if (background == 1) return 6;
else if (background == 6) return 1;
}

View File

@ -8,7 +8,7 @@
void display_background(const int background)
{
extern const bopti_image_t img_bground;
dsubimage(0, 0, &img_bground, 0, 65 * (background - 1), 128, 64, DIMAGE_NONE);
dsubimage(0, 0, &img_bground, 0, 225 * (background - 1), 396, 224, DIMAGE_NONE);
}