summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/nvflinger.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-04-06 04:11:28 +0200
committerGitHub <noreply@github.com>2022-04-06 04:11:28 +0200
commit12dc4d05272da9e3e0adbc134937a27432fd4344 (patch)
tree8c6901c8b00c5f97ff6eaa579962b5633296fed2 /src/core/hle/service/nvflinger/nvflinger.cpp
parentMerge pull request #8100 from Morph1984/registered-crash (diff)
parenthle: service: nvflinger: buffer_queue_producer: Cleanup & fixes. (diff)
downloadyuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.tar
yuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.tar.gz
yuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.tar.bz2
yuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.tar.lz
yuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.tar.xz
yuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.tar.zst
yuzu-12dc4d05272da9e3e0adbc134937a27432fd4344.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvflinger/nvflinger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp
index 76ce1fbfd..6fb2cdff1 100644
--- a/src/core/hle/service/nvflinger/nvflinger.cpp
+++ b/src/core/hle/service/nvflinger/nvflinger.cpp
@@ -104,7 +104,7 @@ void NVFlinger::SetNVDrvInstance(std::shared_ptr<Nvidia::Module> instance) {
std::optional<u64> NVFlinger::OpenDisplay(std::string_view name) {
const auto lock_guard = Lock();
- LOG_DEBUG(Service, "Opening \"{}\" display", name);
+ LOG_DEBUG(Service_NVFlinger, "Opening \"{}\" display", name);
const auto itr =
std::find_if(displays.begin(), displays.end(),
@@ -219,7 +219,7 @@ VI::Layer* NVFlinger::FindOrCreateLayer(u64 display_id, u64 layer_id) {
auto* layer = display->FindLayer(layer_id);
if (layer == nullptr) {
- LOG_DEBUG(Service, "Layer at id {} not found. Trying to create it.", layer_id);
+ LOG_DEBUG(Service_NVFlinger, "Layer at id {} not found. Trying to create it.", layer_id);
CreateLayerAtId(*display, layer_id);
return display->FindLayer(layer_id);
}