summaryrefslogtreecommitdiffhomepage
path: root/loader/atlas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/atlas.cpp')
-rw-r--r--loader/atlas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/atlas.cpp b/loader/atlas.cpp
index 39442b6a..94f02e3c 100644
--- a/loader/atlas.cpp
+++ b/loader/atlas.cpp
@@ -29,7 +29,7 @@ StringView loader_::make_atlas_path(char(&buf)[FILENAME_MAX], StringView dir, St
bool loader_::check_atlas_name(StringView str) noexcept
{
constexpr auto first_char =
- "_0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"_s;
+ "@_0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"_s;
if (str == "<invalid>"_s)
return true;
if (!str || !first_char.find(str[0]))