From bc2b4fe2026c634164dcd9d2d0c7375f4c12adcc Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Mon, 3 Mar 2025 10:27:01 -0600 Subject: [PATCH] fix constness error --- MCUME_pico2/pico64/c64.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MCUME_pico2/pico64/c64.cpp b/MCUME_pico2/pico64/c64.cpp index 9dadd15..3532951 100644 --- a/MCUME_pico2/pico64/c64.cpp +++ b/MCUME_pico2/pico64/c64.cpp @@ -290,8 +290,8 @@ static uint8_t nbkeys = 0; static uint8_t kcnt = 0; static bool toggle = true; -static 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 * textseq; +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 bool res=false;