diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2023-04-29 17:32:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-29 17:32:56 -0700 |
| commit | 4a29d25e65b1e03f1b776375dc75d44e3ec478da (patch) | |
| tree | 34435ecd6f03843e2c05c2e8f2d3adcee7a291a5 /src/d/msg/d_msg_out_font.cpp | |
| parent | 0c4e853e4bc94bfe736c5575075334cc6e3d6397 (diff) | |
improve const correctness (#325)
Diffstat (limited to 'src/d/msg/d_msg_out_font.cpp')
| -rw-r--r-- | src/d/msg/d_msg_out_font.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/msg/d_msg_out_font.cpp b/src/d/msg/d_msg_out_font.cpp index 465a97d955..1a5ca727f2 100644 --- a/src/d/msg/d_msg_out_font.cpp +++ b/src/d/msg/d_msg_out_font.cpp @@ -800,7 +800,7 @@ asm void COutFont_c::setBlendAnime(J2DPicture* param_0, s16 param_1) { /* 80228530-80228578 222E70 0048+00 1/1 0/0 0/0 .text getBtiName__10COutFont_cFi */ const char* COutFont_c::getBtiName(int nameIdx) { - static char* mpIconName[70] = { + static const char* mpIconName[70] = { "font_00.bti", "font_01.bti", "font_09.bti", |
