1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Android: Don't assert on device type 25 which seems to be valid when debugging from Android Studio (although undocumented)

This commit is contained in:
ed 2020-11-25 15:47:42 +00:00
parent 57f4d4a618
commit 4de5726775

View file

@ -1270,6 +1270,7 @@ public:
case 22: return "USB headset";
case 23: return "hearing aid";
case 24: return "built-in speaker safe";
case 25: return {};
default: jassertfalse; return {}; // type not supported yet, needs to be added!
}
}