From 0dcedcb4a16e9192ffdc2c722293e321c720d8da Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 7 Oct 2025 13:43:58 +0200 Subject: [PATCH] vulkan_sdl2: use correct log module prefix --- src/video_display/vulkan/vulkan_sdl2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_display/vulkan/vulkan_sdl2.cpp b/src/video_display/vulkan/vulkan_sdl2.cpp index c9c3a665b..7cf97d625 100644 --- a/src/video_display/vulkan/vulkan_sdl2.cpp +++ b/src/video_display/vulkan/vulkan_sdl2.cpp @@ -751,7 +751,7 @@ void* display_vulkan_init(module* parent, const char* fmt, unsigned int flags) { log_msg(LOG_LEVEL_ERROR, "Unable to initialize SDL2 video: %s\n", SDL_GetError()); return nullptr; } - log_msg(LOG_LEVEL_NOTICE, "[SDL] Using driver: %s\n", SDL_GetCurrentVideoDriver()); + MSG(NOTICE, "Using driver: %s\n", SDL_GetCurrentVideoDriver()); SDL_ShowCursor(args.cursor); SDL_DisableScreenSaver();