Improve some const correctness in RGBASM

This commit is contained in:
Rangi42
2024-03-06 13:53:03 -05:00
parent 585c620945
commit 053aa80951
6 changed files with 18 additions and 13 deletions

View File

@@ -91,7 +91,7 @@ void charmap_Pop() {
charmapStack.pop();
}
void charmap_Add(char *mapping, uint8_t value) {
void charmap_Add(char const *mapping, uint8_t value) {
Charmap &charmap = *currentCharmap;
size_t nodeIdx = 0;