Skip to content

Commit

Permalink
Fix type for string
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbbbr committed Aug 14, 2023
1 parent 9d1a29b commit 16b71ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define FORMAT_ENTRY(e_type, e_name, e_version) ((tool_entry){.type = e_type, .c_name = e_name, .c_version = e_version})

// Reference example: Formerly: #define STR_GBDK_2_x_to_2020_3_2_0 "2.x - 2020.3.2.0"
#define DEF_NAME_STR(varname, str_content) static const uint8_t varname[] = str_content
#define DEF_NAME_STR(varname, str_content) static const char varname[] = str_content

// Reference example: const uint8_t sig_str_devsound_lite[] = "DevSound Lite";
#define DEF_PATTERN_STR(varname, str_content) static const uint8_t varname[] = str_content
Expand Down

0 comments on commit 16b71ef

Please sign in to comment.