summaryrefslogtreecommitdiffstats
path: root/users/drashna/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/readme.md')
-rw-r--r--users/drashna/readme.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/drashna/readme.md b/users/drashna/readme.md
index ddf24b24f..0aa73ece9 100644
--- a/users/drashna/readme.md
+++ b/users/drashna/readme.md
@@ -96,7 +96,7 @@ Then you can create this file and add your macro strings to it:
###### secrets.h
```c
-PROGMEM const char secret[][64] = {
+static const char * const secrets[] = {
"secret1",
"secret2",
"secret3",
@@ -116,7 +116,7 @@ In the `<name>.c` file, you will want to add this to the top:
#else
// `PROGMEM const char secret[][x]` may work better, but it takes up more space in the firmware
// And I'm not familiar enough to know which is better or why...
-PROGMEM const char secret[][64] = {
+static const char * const secrets[] = {
"test1",
"test2",
"test3",