mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-18 12:55:19 +00:00
Access class static methods with "::"
Recommendation from Clang-Tidy: https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html
This commit is contained in:
parent
09c9996f31
commit
8a6b5ca71f
11 changed files with 31 additions and 31 deletions
|
|
@ -147,7 +147,7 @@ void save_manager_dialog::UpdateList()
|
|||
{
|
||||
if (m_dir == "")
|
||||
{
|
||||
m_dir = Emu.GetHddDir() + "home/" + Emu.GetUsr() + "/savedata/";
|
||||
m_dir = Emulator::GetHddDir() + "home/" + Emu.GetUsr() + "/savedata/";
|
||||
}
|
||||
|
||||
m_save_entries = GetSaveEntries(m_dir);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue