diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 06298da402..937649064c 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -451,13 +451,17 @@ if [ "$HAVE_MATERIALUI" != 'no' ] || [ "$HAVE_XMB" != 'no' ] || [ "$HAVE_ZARCH" if [ "$HAVE_RGUI" = 'no' ]; then HAVE_MATERIALUI=no HAVE_XMB=no - HAVE_ZARCH=no + HAVE_ZARCH=no echo "Notice: RGUI not available, MaterialUI, XMB and ZARCH will also be disabled." elif [ "$HAVE_OPENGL" = 'no' ] && [ "$HAVE_OPENGLES" = 'no' ] && [ "$HAVE_VULKAN" = 'no' ]; then - HAVE_MATERIALUI=no - HAVE_XMB=no + if [ "$OS" = 'Win32' ]; then + echo "Notice: Hardware rendering context not available, the GDI video driver must be used." + else + HAVE_MATERIALUI=no + HAVE_XMB=no HAVE_ZARCH=no - echo "Notice: Hardware rendering context not available, XMB, MaterialUI and ZARCH will also be disabled." + echo "Notice: Hardware rendering context not available, XMB, MaterialUI and ZARCH will also be disabled." + fi fi fi