From 2cd1f78241bc026ceb776f8caf50beeadb78478c Mon Sep 17 00:00:00 2001 From: vaxerski Date: Wed, 21 Aug 2024 12:17:17 +0200 Subject: [PATCH] GBM: fixup good() return value --- src/allocator/GBM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allocator/GBM.cpp b/src/allocator/GBM.cpp index 252ba97..0f7fb88 100644 --- a/src/allocator/GBM.cpp +++ b/src/allocator/GBM.cpp @@ -231,7 +231,7 @@ bool Aquamarine::CGBMBuffer::isSynchronous() { } bool Aquamarine::CGBMBuffer::good() { - return true; + return bo; } SDMABUFAttrs Aquamarine::CGBMBuffer::dmabuf() {