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
@@ -188,7 +188,7 @@ void DevDiskImagesWidget::displayImages()
// todo wtf is this
if (m_currentDevice && m_currentDevice->device) {
unsigned int device_version =
idevice_get_device_version(m_currentDevice->device);
get_device_version(m_currentDevice->device);
deviceMajorVersion = (device_version >> 16) & 0xFF;
deviceMinorVersion = (device_version >> 8) & 0xFF;
hasConnectedDevice = true;