summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/nvflinger.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-01-04 20:28:49 +0100
committerGitHub <noreply@github.com>2022-01-04 20:28:49 +0100
commitafb06b149505b21af976d3d1e24186b8260ee018 (patch)
tree9776b690684a4fc3914662b33414c18eca5f1c6b /src/core/hle/service/nvflinger/nvflinger.cpp
parentMerge pull request #7670 from ameerj/vsync-block (diff)
parentRemove invalid assertion statement (diff)
downloadyuzu-afb06b149505b21af976d3d1e24186b8260ee018.tar
yuzu-afb06b149505b21af976d3d1e24186b8260ee018.tar.gz
yuzu-afb06b149505b21af976d3d1e24186b8260ee018.tar.bz2
yuzu-afb06b149505b21af976d3d1e24186b8260ee018.tar.lz
yuzu-afb06b149505b21af976d3d1e24186b8260ee018.tar.xz
yuzu-afb06b149505b21af976d3d1e24186b8260ee018.tar.zst
yuzu-afb06b149505b21af976d3d1e24186b8260ee018.zip
Diffstat (limited to 'src/core/hle/service/nvflinger/nvflinger.cpp')
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp3
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; });