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.
This commit is contained in:
sukibaby
2025-05-03 10:25:36 -07:00
committed by teejusb
parent 79f2e2e5ee
commit f18dddd43e
+1 -1
View File
@@ -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;