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
@@ -112,7 +112,7 @@ void DevDiskImageHelper::onMountButtonClicked()
m_isMounting = true;
// Check if we need to download first
unsigned int device_version = idevice_get_device_version(m_device->device);
unsigned int device_version = get_device_version(m_device->device);
unsigned int deviceMajorVersion = (device_version >> 16) & 0xFF;
unsigned int deviceMinorVersion = (device_version >> 8) & 0xFF;