diff options
| author | bunnei <bunneidev@gmail.com> | 2022-01-04 11:28:49 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-04 11:28:49 -0800 |
| commit | afb06b149505b21af976d3d1e24186b8260ee018 (patch) | |
| tree | 9776b690684a4fc3914662b33414c18eca5f1c6b /src/core/hle/service/nvflinger/nvflinger.cpp | |
| parent | 118d5fa3b0fdc070f57916203dbbb999fe7e3c69 (diff) | |
| parent | 1eec9590c393d604c67320904a8fffaa5da3a8a1 (diff) | |
Merge pull request #7636 from vonchenplus/buffer_queue_query
core:hle:service:nvflinger Implement few type in bufferqueue query method
Diffstat (limited to 'src/core/hle/service/nvflinger/nvflinger.cpp')
| -rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index a22811ec1..01e69de30 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp @@ -100,9 +100,6 @@ std::optional<u64> NVFlinger::OpenDisplay(std::string_view name) { LOG_DEBUG(Service, "Opening \"{}\" display", name); - // TODO(Subv): Currently we only support the Default display. - ASSERT(name == "Default"); - const auto itr = std::find_if(displays.begin(), displays.end(), [&](const VI::Display& display) { return display.GetName() == name; }); |
