From 75e51c3081802a141bd1ef9169a91cfec3cf23bc Mon Sep 17 00:00:00 2001 From: Solarite <118111762+solarite1797@users.noreply.github.com> Date: Tue, 27 Aug 2024 04:17:03 +0530 Subject: [PATCH] Fix typo in capturedemo command (#259) Fixed a slight typo in the description for the `capturedemo` command. --- engine/client/m_mp3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/m_mp3.c b/engine/client/m_mp3.c index 75dc1d408..3d1b80641 100644 --- a/engine/client/m_mp3.c +++ b/engine/client/m_mp3.c @@ -5201,7 +5201,7 @@ void Media_Init(void) #endif Cmd_AddCommandD("capture", Media_RecordFilm_f, "Captures realtime action to a named video file. Check the capture* cvars to control driver/codecs/rates."); - Cmd_AddCommandD("capturedemo", Media_RecordDemo_f, "capuuredemo foo.dem foo.avi - Captures a named demo to a named video file.\nDemo capturing is performed offscreen when possible, allowing arbitrary video sizes or smooth captures on underpowered hardware."); + Cmd_AddCommandD("capturedemo", Media_RecordDemo_f, "capturedemo foo.dem foo.avi - Captures a named demo to a named video file.\nDemo capturing is performed offscreen when possible, allowing arbitrary video sizes or smooth captures on underpowered hardware."); Cmd_AddCommandD("capturestop", Media_StopRecordFilm_f, "Aborts the current video capture."); Cmd_AddCommandD("capturepause", Media_CapturePause_f, "Pauses the video capture, allowing you to avoid capturing uninteresting parts. This is a toggle, so reuse the same command to resume capturing again.");