mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 00:04:49 +02:00
Make fast_matrix_mul_4x4 inlineable
This commit is contained in:
+2
-1
@@ -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");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user