1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-15 00:05:02 +02:00

Reduced usage of global variables - removed or made const / constexpr

This commit is contained in:
Ivan Savenko
2024-02-12 13:49:45 +02:00
parent 6e399eb21a
commit 4c70abbeb5
24 changed files with 39 additions and 99 deletions

View File

@ -17,7 +17,7 @@
#define strcpy_s(a, b, c) strncpy(a, c, b)
#endif
static const char *g_cszAiName = "Lua interpreter";
static const char * const g_cszAiName = "Lua interpreter";
VCMI_LIB_NAMESPACE_BEGIN