diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-04-24 10:47:53 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-04-24 12:01:30 -0400 |
| commit | 72b497e8766fe1b75195da80967ab890f90eeb2b (patch) | |
| tree | fc99ef09a06bf3ccc45bf7f3d62c5a50db0733f2 /src/core/hle/service/nvflinger/nvflinger.cpp | |
| parent | 285d8d8b7d6d22202f87d60f67768be69b7f0bd1 (diff) | |
nvflinger: Move logging macros over to new fmt-compatible ones
Diffstat (limited to 'src/core/hle/service/nvflinger/nvflinger.cpp')
| -rw-r--r-- | src/core/hle/service/nvflinger/nvflinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvflinger/nvflinger.cpp b/src/core/hle/service/nvflinger/nvflinger.cpp index a99ebc8e6..3481e48d0 100644 --- a/src/core/hle/service/nvflinger/nvflinger.cpp +++ b/src/core/hle/service/nvflinger/nvflinger.cpp @@ -48,7 +48,7 @@ NVFlinger::~NVFlinger() { } u64 NVFlinger::OpenDisplay(const std::string& name) { - LOG_WARNING(Service, "Opening display %s", name.c_str()); + NGLOG_WARNING(Service, "Opening display {}", name); // TODO(Subv): Currently we only support the Default display. ASSERT(name == "Default"); |
