mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-05 08:27:10 +02:00
Move away from C format to cpp::fmt.
This commit is contained in:
@ -116,7 +116,7 @@ static const LightObj & Blip_FindBySprID(int32_t spr_id)
|
||||
// Perform a range check on the specified identifier
|
||||
if (spr_id < 0)
|
||||
{
|
||||
STHROWF("The specified sprite identifier is invalid: %d", spr_id);
|
||||
STHROWF("The specified sprite identifier is invalid: {}", spr_id);
|
||||
}
|
||||
// Obtain the ends of the entity pool
|
||||
auto itr = Core::Get().GetBlips().cbegin();
|
||||
|
Reference in New Issue
Block a user