summaryrefslogtreecommitdiff
path: root/tools/tmc_strings/main.cpp
diff options
context:
space:
mode:
authoroctorock <79596758+octorock@users.noreply.github.com>2021-11-20 23:40:47 +0100
committeroctorock <79596758+octorock@users.noreply.github.com>2021-11-20 23:40:47 +0100
commitdb763950bbccb1e1d8034ecd6e7f06f8fadecf47 (patch)
treee9131cfc32cb1711b20d600fed2b495fe26c2ec5 /tools/tmc_strings/main.cpp
parent74e416b578f203f5f3b2ca9e76d066ce5c7009e2 (diff)
Fix clang warnings and remove remaining baserom references
Diffstat (limited to 'tools/tmc_strings/main.cpp')
-rw-r--r--tools/tmc_strings/main.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/tools/tmc_strings/main.cpp b/tools/tmc_strings/main.cpp
index af44c2b8..6490113a 100644
--- a/tools/tmc_strings/main.cpp
+++ b/tools/tmc_strings/main.cpp
@@ -28,11 +28,11 @@ namespace {
};
constexpr const char *const ColorStrings[] = {
- [Color_White] = "White",
- [Color_Red] = "Red",
- [Color_Green] = "Green",
- [Color_Blue] = "Blue",
- [Color_Yellow] = "Yellow",
+ "White",
+ "Red",
+ "Green",
+ "Blue",
+ "Yellow",
};
enum Input {
@@ -52,17 +52,17 @@ namespace {
};
constexpr const char *const InputStrings[] = {
- [Input_A] = "A",
- [Input_B] = "B",
- [Input_Left] = "Left",
- [Input_Right] = "Right",
- [Input_DUp] = "DUp",
- [Input_DDown] = "DDown",
- [Input_DLeft] = "DLeft",
- [Input_DRight] = "DRight",
- [Input_Dpad] = "Dpad",
- [Input_Select] = "Select",
- [Input_Start] = "Start",
+ "A",
+ "B",
+ "Left",
+ "Right",
+ "DUp",
+ "DDown",
+ "DLeft",
+ "DRight",
+ "Dpad",
+ "Select",
+ "Start",
};
const std::map<u8, std::string> CharConvertArray = {