1
0
Fork 0
mirror of https://github.com/Detanup01/gbe_fork.git synced 2025-06-07 17:55:55 +02:00

Merge pull request #173 from mlabalabala/patch-1

fix "break;" missing
This commit is contained in:
Detanup01 2025-02-23 20:59:54 +01:00 committed by GitHub
commit f34e00176e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -896,6 +896,7 @@ void Steam_Overlay::set_next_notification_pos(std::pair<float, float> scrn_size,
).y; ).y;
noti_height = msg_height + settings->overlay_appearance.font_size + global_style.WindowPadding.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; case notification_type::message: pos = settings->overlay_appearance.chat_msg_pos; break;
default: PRINT_DEBUG("ERROR: unhandled notification type %i", (int)noti.type); break; default: PRINT_DEBUG("ERROR: unhandled notification type %i", (int)noti.type); break;
} }