diff options
| author | 2021-12-28 18:48:44 +0800 | |
|---|---|---|
| committer | 2021-12-28 18:51:11 +0800 | |
| commit | 1eec9590c393d604c67320904a8fffaa5da3a8a1 (patch) | |
| tree | aae500379dcfb6cf3a692ea858b5777cdd1b84d3 | |
| parent | Remove invalid header include (diff) | |
| download | yuzu-1eec9590c393d604c67320904a8fffaa5da3a8a1.tar.gz yuzu-1eec9590c393d604c67320904a8fffaa5da3a8a1.tar.xz yuzu-1eec9590c393d604c67320904a8fffaa5da3a8a1.zip | |
Remove invalid assertion statement
Diffstat (limited to '')
| -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) { | |||
| 100 | 100 | ||
| 101 | LOG_DEBUG(Service, "Opening \"{}\" display", name); | 101 | LOG_DEBUG(Service, "Opening \"{}\" display", name); |
| 102 | 102 | ||
| 103 | // TODO(Subv): Currently we only support the Default display. | ||
| 104 | ASSERT(name == "Default"); | ||
| 105 | |||
| 106 | const auto itr = | 103 | const auto itr = |
| 107 | std::find_if(displays.begin(), displays.end(), | 104 | std::find_if(displays.begin(), displays.end(), |
| 108 | [&](const VI::Display& display) { return display.GetName() == name; }); | 105 | [&](const VI::Display& display) { return display.GetName() == name; }); |