Continue menu

This commit is contained in:
Miloslav Ciz 2025-01-02 20:17:15 +01:00
parent a30be11bf9
commit 9e0cb3c944
3 changed files with 92 additions and 17 deletions

View file

@ -16,6 +16,22 @@
#include <stdint.h>
#include "map.h"
static const char *LCR_texts[] =
{
// menu tabs:
"main menu",
"play map",
"view repl",
"play repl",
// main menu items:
"camera",
"music",
"sound",
"save repl",
"exit"
};
static const char *LCR_internalResourceFile =
"testmap;"
"0 :*H1k0J"
@ -61,10 +77,8 @@ static const char *LCR_internalResourceFile =
" map end "
"#map2;1 :*H1k0J :,s0s0 :fd190 "
;
#define LCR_IMAGE_SIZE 64 ///< one-dimension resolution of bitmap image
#define LCR_IMAGE_STORE_SIZE (LCR_IMAGE_SIZE * LCR_IMAGE_SIZE + 256 * 2)