bug fixes & replace idevice_get_device_version with get_device_version

This commit is contained in:
uncor3
2025-10-30 11:32:05 +00:00
parent 56d03f069a
commit 4fc2b49251
15 changed files with 68 additions and 26 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ QString DeviceImageWidget::getMockupNameFromDisplayName(
int DeviceImageWidget::getIosVersionFromDevice() const
{
unsigned int version = idevice_get_device_version(m_device->device);
unsigned int version = get_device_version(m_device->device);
if (version > 0) {
int majorVersion = (version >> 16) & 0xFF;