Use QString not QByteArray for string equality

This commit is contained in:
Cameron Gutman
2022-04-02 15:49:07 -05:00
parent 1d2c4d0843
commit 9a5134ffcf
@@ -277,7 +277,7 @@ bool MmalRenderer::getDtDeviceStatus(QString name, bool ifUnknown)
QString statusString(statusData); QString statusString(statusData);
// Per Device Tree docs, 'okay' and 'ok' are both acceptable // Per Device Tree docs, 'okay' and 'ok' are both acceptable
return statusData == "okay" || statusData == "ok"; return statusString == "okay" || statusString == "ok";
} }
bool MmalRenderer::isMmalOverlaySupported() bool MmalRenderer::isMmalOverlaySupported()