aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/nvflinger
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-10 01:14:40 -0500
committerGitHub <noreply@github.com>2018-02-10 01:14:40 -0500
commitb26cdf1fe5e07d161bdb8542744b26c8e50f94c9 (patch)
tree6eab1f6c8f726fca18468ad883a2ca3c010898d0 /src/core/hle/service/nvflinger
parent1add3b20c4b2bf1815e6d6ea2b61845282baac25 (diff)
parent8e7da732143b5e4192a4475bd6a4c5d473cf1dff (diff)
Merge pull request #175 from bunnei/libnx-fixes-2
More fixes for Libnx
Diffstat (limited to 'src/core/hle/service/nvflinger')
-rw-r--r--src/core/hle/service/nvflinger/buffer_queue.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.cpp b/src/core/hle/service/nvflinger/buffer_queue.cpp
index c7206a683..f90c7ca51 100644
--- a/src/core/hle/service/nvflinger/buffer_queue.cpp
+++ b/src/core/hle/service/nvflinger/buffer_queue.cpp
@@ -40,7 +40,11 @@ u32 BufferQueue::DequeueBuffer(u32 pixel_format, u32 width, u32 height) {
return igbp_buffer.format == pixel_format && igbp_buffer.width == width &&
igbp_buffer.height == height;
});
- ASSERT(itr != queue.end());
+ if (itr == queue.end()) {
+ LOG_CRITICAL(Service_NVDRV, "no free buffers for pixel_format=%d, width=%d, height=%d",
+ pixel_format, width, height);
+ itr = queue.begin();
+ }
itr->status = Buffer::Status::Dequeued;
return itr->slot;