Update menu.cpp

This commit is contained in:
Onran 2024-02-22 22:32:08 +09:00 committed by GitHub
parent 889fcde9d3
commit 30d179e9a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -194,7 +194,7 @@ void create_world_types_panel(Engine* engine) {
std::vector<std::string> worldTypes = WorldTypes::getWorldTypes();
std::sort(worldTypes.begin(), worldTypes.end());
for (std::string& type : worldTypes) {
std::string& fullName = util::wstr2str_utf8(langs::get(util::str2wstr_utf8(type), L"world.types"));
const std::string& fullName = util::wstr2str_utf8(langs::get(util::str2wstr_utf8(type), L"world.types"));
auto button = std::make_shared<Button>(
util::str2wstr_utf8(fullName),
vec4(10.f),