From f18dddd43e0df1d9750f904a8656dcea682eadf6 Mon Sep 17 00:00:00 2001 From: sukibaby <163092272+sukibaby@users.noreply.github.com> Date: Sat, 3 May 2025 10:25:36 -0700 Subject: [PATCH] Fix a malformed CHECKPOINT_M It uses %s, but there is no variable passed to it, so it literally prints "Driver %s successfully made", this fixes that. --- src/RageFileManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RageFileManager.cpp b/src/RageFileManager.cpp index 831a050516..db0da65921 100644 --- a/src/RageFileManager.cpp +++ b/src/RageFileManager.cpp @@ -725,7 +725,7 @@ bool RageFileManager::Mount( const RString &sType, const RString &sRoot_, const return false; } - CHECKPOINT_M("Driver %s successfully made."); + CHECKPOINT_M(ssprintf("Driver %s successfully made.", sType.c_str())); LoadedDriver *pLoadedDriver = new LoadedDriver; pLoadedDriver->m_pDriver = pDriver;