diff --git a/CHANGELOG.md b/CHANGELOG.md index f2f5ba089..9c26213e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ Bugfixes: * Silence warnings when building in 32bit machines. * Create sub folders when writing config file (#690) * Improve user specific locale detection; fix locale detection in Windows 7 (Locale) +* Fix GPU type detection (GPU, macOS) # 2.6.0 diff --git a/src/detection/gpu/gpu_apple.m b/src/detection/gpu/gpu_apple.m index 0323fdaff..85d951724 100644 --- a/src/detection/gpu/gpu_apple.m +++ b/src/detection/gpu/gpu_apple.m @@ -32,7 +32,7 @@ const char* ffGpuDetectMetal(FFlist* gpus) else if ([device supportsFamily:MTLGPUFamilyCommon1]) ffStrbufSetStatic(&gpu->platformApi, "Metal Common 1"); - if (gpu->type == device.hasUnifiedMemory) + if (device.hasUnifiedMemory) { gpu->type = FF_GPU_TYPE_INTEGRATED; gpu->shared.total = device.recommendedMaxWorkingSetSize;