Files
aee/source/utils/utils.cpp
Sergio Valor d4fc7c0ee8 - renderInfo
- fix: no guardava el preset actual
2026-04-04 20:14:11 +02:00

11 lines
232 B
C++

#include "utils/utils.hpp"
#include <algorithm>
#include <string>
auto toLower(const std::string& str) -> std::string {
std::string lower = str;
std::ranges::transform(lower, lower.begin(), ::tolower);
return lower;
}