mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 10:19:01 +00:00
fix: nametag display in old replays
86c3e16
This commit is contained in:
parent
2ea0319f96
commit
12ed6cc816
1 changed files with 3 additions and 1 deletions
|
@ -388,6 +388,9 @@ void SlippiPlaybackStatus::generateDenylist()
|
||||||
{0x8006c5d8, true},
|
{0x8006c5d8, true},
|
||||||
// Post 3.7.0: Recording/SendGameEnd.asm
|
// Post 3.7.0: Recording/SendGameEnd.asm
|
||||||
{0x8016d30c, true},
|
{0x8016d30c, true},
|
||||||
|
// Online/Menus/InGame/InitInGame.asm
|
||||||
|
// https://github.com/project-slippi/slippi-ssbm-asm/blame/7211b1cfe0792e0fa5ebfbac6bb493bda05d8ee2/Online/Menus/InGame/InitInGame.asm
|
||||||
|
{0x8016e9b4, true},
|
||||||
|
|
||||||
// Common codes not in our codebase
|
// Common codes not in our codebase
|
||||||
// HUD Transparency v1.1 (https://smashboards.com/threads/transparent-hud-v1-1.508509/)
|
// HUD Transparency v1.1 (https://smashboards.com/threads/transparent-hud-v1-1.508509/)
|
||||||
|
@ -417,7 +420,6 @@ void SlippiPlaybackStatus::generateDenylist()
|
||||||
if (entry.isDirectory)
|
if (entry.isDirectory)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
WARN_LOG_FMT(SLIPPI, "Injection List checking: {}. {}", entry.physicalName, entry.virtualName);
|
|
||||||
std::string contents;
|
std::string contents;
|
||||||
File::ReadFileToString(entry.physicalName, contents);
|
File::ReadFileToString(entry.physicalName, contents);
|
||||||
auto res = json::parse(contents, nullptr, false);
|
auto res = json::parse(contents, nullptr, false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue