fix constness error

This commit is contained in:
Jeff Epler 2025-03-03 10:27:01 -06:00
parent 3b9c35c30a
commit bc2b4fe202

View file

@ -290,8 +290,8 @@ static uint8_t nbkeys = 0;
static uint8_t kcnt = 0; static uint8_t kcnt = 0;
static bool toggle = true; static bool toggle = true;
static char * textseq; static const char * textseq;
static char * textload = "LOAD\"\"\r\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tRUN\r"; static const char * textload = "LOAD\"\"\r\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tRUN\r";
static char textkey[1]; static char textkey[1];
static bool res=false; static bool res=false;