Fix LR variable fetch error

This commit is contained in:
wheremyfoodat 2024-07-09 20:56:47 +03:00 committed by GitHub
parent f248893ffe
commit 6f6167a201
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,7 @@ static std::string FetchVariable(std::string key, std::string def) {
var.key = key.c_str();
if (!envCallbacks(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value == nullptr) {
Helpers::warn("Fetching variable %s failed.", key);
Helpers::warn("Fetching variable %s failed.", key.c_str());
return def;
}