diff options
author | Feng Chen <vonchenplus@gmail.com> | 2021-12-28 18:48:44 +0800 |
---|---|---|
committer | Feng Chen <vonchenplus@gmail.com> | 2021-12-28 18:51:11 +0800 |
commit | 1eec9590c393d604c67320904a8fffaa5da3a8a1 (patch) | |
tree | aae500379dcfb6cf3a692ea858b5777cdd1b84d3 /src | |
parent | e18bf4b0629f547e82c9a492b81744de29952620 (diff) |
Remove invalid assertion statement
Diffstat (limited to 'src')
-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; }); |