diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-02-12 01:14:45 -0500 | 
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-02-12 01:14:47 -0500 | 
| commit | eefd97e80d0563fdc16f038c0194900d74279c0c (patch) | |
| tree | 6464deb25717ea0b625ab7cdc1aa03dfe4e1f1dc | |
| parent | 37f1cf8cbd496dc518aac4ac28ea86f8c0b51683 (diff) | |
bcat/backend: Prevent fmt exception in debug log within NullBackend::Clear()
A formatting specifier within Clear wasn't being used, which will cause
fmt to throw an exception. This fixes that.
| -rw-r--r-- | src/core/hle/service/bcat/backend/backend.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/core/hle/service/bcat/backend/backend.cpp b/src/core/hle/service/bcat/backend/backend.cpp index 6f5ea095a..826c89970 100644 --- a/src/core/hle/service/bcat/backend/backend.cpp +++ b/src/core/hle/service/bcat/backend/backend.cpp @@ -117,7 +117,7 @@ bool NullBackend::SynchronizeDirectory(TitleIDVersion title, std::string name,  }  bool NullBackend::Clear(u64 title_id) { -    LOG_DEBUG(Service_BCAT, "called, title_id={:016X}"); +    LOG_DEBUG(Service_BCAT, "called, title_id={:016X}", title_id);      return true;  } | 
