mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
Fix LR variable fetch error
This commit is contained in:
parent
f248893ffe
commit
6f6167a201
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ static std::string FetchVariable(std::string key, std::string def) {
|
||||||
var.key = key.c_str();
|
var.key = key.c_str();
|
||||||
|
|
||||||
if (!envCallbacks(RETRO_ENVIRONMENT_GET_VARIABLE, &var) || var.value == nullptr) {
|
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;
|
return def;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue