From 340871e03a7e4660fe89668682736c05792dadca Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 11 Aug 2024 18:32:10 +0300 Subject: [PATCH] engine: platform: sdl: correct the message about glblit in ref_soft --- engine/platform/sdl/vid_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/platform/sdl/vid_sdl.c b/engine/platform/sdl/vid_sdl.c index a01a3aca..5295cd85 100644 --- a/engine/platform/sdl/vid_sdl.c +++ b/engine/platform/sdl/vid_sdl.c @@ -126,7 +126,7 @@ qboolean SW_CreateBuffer( int width, int height, uint *stride, uint *bpp, uint * // if it is failed, it is not possible to draw with SDL in REF_SOFTWARE mode if( !sw.win ) { - Sys_Warn("failed to initialize software output, try enable sw_glblit"); + Sys_Warn( "failed to initialize software output, try running with -glblit flag" ); return false; }