Skip to content

Commit f14cbf5

Browse files
committed
Fix replay path formatting when using srcwr💾
1 parent d08a307 commit f14cbf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/sourcemod/scripting/shavit-replay-recorder.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ void DoReplaySaverCallbacks(int iSteamID, int client, int style, float time, int
423423
char wrpath[PLATFORM_MAX_PATH], copypath[PLATFORM_MAX_PATH];
424424
if (makeReplay)
425425
FormatEx(wrpath, sizeof(wrpath),
426-
track>0?"%s/%d/%s%s_%d.replay" : "%s/%d/%s%s.replay",
426+
track>0?"%s/%d/%s_%d.replay" : "%s/%d/%s.replay",
427427
gS_ReplayFolder, style, gS_Map, track
428428
);
429429
if (makeCopy)

0 commit comments

Comments
 (0)