mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Silence warnings in misc files (gui, psp2, mfc, mouse)
This commit is contained in:
parent
3a9ae2df9e
commit
c424652b43
4 changed files with 17 additions and 3 deletions
|
|
@ -202,10 +202,12 @@ void cfg::encode(YAML::Emitter& out, const cfg::_base& rhs)
|
|||
out << YAML::EndMap;
|
||||
return;
|
||||
}
|
||||
default: LOG_ERROR(GENERAL, "Attempting to cfg encode an unimplemented type.");
|
||||
default:
|
||||
{
|
||||
out << rhs.to_string();
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
out << rhs.to_string();
|
||||
}
|
||||
|
||||
void cfg::decode(const YAML::Node& data, cfg::_base& rhs)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue