From 3b870a6eb031b65f131a4357e255f56263501dcc Mon Sep 17 00:00:00 2001 From: "1842047134@qq.com" <91363385+mlabalabala@users.noreply.github.com> Date: Mon, 24 Feb 2025 00:50:13 +0800 Subject: [PATCH] Update steam_overlay.cpp fix "break;" missing --- overlay_experimental/steam_overlay.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/overlay_experimental/steam_overlay.cpp b/overlay_experimental/steam_overlay.cpp index 39de38c1..b7ab26ce 100644 --- a/overlay_experimental/steam_overlay.cpp +++ b/overlay_experimental/steam_overlay.cpp @@ -896,6 +896,7 @@ void Steam_Overlay::set_next_notification_pos(std::pair scrn_size, ).y; noti_height = msg_height + settings->overlay_appearance.font_size + global_style.WindowPadding.y; } + break; case notification_type::message: pos = settings->overlay_appearance.chat_msg_pos; break; default: PRINT_DEBUG("ERROR: unhandled notification type %i", (int)noti.type); break; }