Make fast_matrix_mul_4x4 inlineable

This commit is contained in:
Henrik Rydgård
2026-01-30 14:10:32 +01:00
parent 19e78ed122
commit 7d987cd78b
13 changed files with 152 additions and 208 deletions
+2 -1
View File
@@ -848,7 +848,8 @@ void NotifyPadConnected(InputDeviceID deviceId, std::string_view name) {
g_padNames[deviceId] = name;
// Don't notify within the first 5 seconds, to avoid notification spam on startup.
if (time_now_d() >= 5.0) {
// Also for some reason we get some strange things on Android... "Virtual"?
if (time_now_d() >= 5.0 && name != "Virtual") {
auto co = GetI18NCategory(I18NCat::CONTROLS);
g_OSD.Show(OSDType::MESSAGE_SUCCESS, ApplySafeSubstitutions("%1: %2", co->T("Game controller connected"), name), "", "I_CONTROLLER", 2.0f, "controller_connected");
}