Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ MAKE_HOOK_MATCH(AudioTimeSyncController_StartSong, &AudioTimeSyncController::Sta
static std::optional<bool (*)()> isInReplayFunc = CondDeps::Find<bool>("replay", "IsInReplay");
if (isInReplayFunc.has_value())
{
static std::optional<bool (*)()> isInRenderFunc = CondDeps::Find<bool>("replay", "IsInRender ");
static std::optional<bool (*)()> isInRenderFunc = CondDeps::Find<bool>("replay", "IsInRender");
bool isInRender = false;
isInReplay = isInReplayFunc.value()();
if (isInRenderFunc.has_value())
Expand Down Expand Up @@ -568,4 +568,4 @@ MOD_EXPORT void late_load() {
INSTALL_HOOK(hkLog, MultiplayerLobbyController_DeactivateMultiplayerLobby);
INSTALL_HOOK(hkLog, MultiplayerResultsViewController_DidActivate);
logger().info("Installed all ClockMod hooks!");
}
}