summaryrefslogtreecommitdiff
path: root/programs
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-10-15 12:29:32 -0700
committerJulian Blake Kongslie2022-10-15 12:29:32 -0700
commitb182ee426ca1167ddefd4faf5c45f8c8250d29e6 (patch)
tree8690035cf1351b63808764119f8275264f6c09b3 /programs
parentAutomatically discover programs and incorporate into the binary (diff)
downloadbiggolf-b182ee426ca1167ddefd4faf5c45f8c8250d29e6.tar.xz
const-protect the program images
Diffstat (limited to 'programs')
-rw-r--r--programs/programs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/programs.h b/programs/programs.h
index dbe14e2..60fb725 100644
--- a/programs/programs.h
+++ b/programs/programs.h
@@ -4,4 +4,4 @@
4#include <map> 4#include <map>
5#include <string> 5#include <string>
6 6
7extern const std::map<std::string, std::uint8_t *> programs; 7extern const std::map<std::string, const std::uint8_t *> programs;