diff --git a/src/core/hle/service/fs/directory.cpp b/src/core/hle/service/fs/directory.cpp index 13f011b5c..1a029635b 100644 --- a/src/core/hle/service/fs/directory.cpp +++ b/src/core/hle/service/fs/directory.cpp @@ -60,7 +60,7 @@ void Directory::Read(Kernel::HLERequestContext& ctx) { ctx.RunAsync( [this, async_data](Kernel::HLERequestContext& ctx) { std::vector entries(async_data->count); - LOG_TRACE(Service_FS, "Read {}: count={}", GetName(), count); + LOG_TRACE(Service_FS, "Read {}: count={}", GetName(), async_data->count); // Number of entries actually read async_data->read = backend->Read(static_cast(entries.size()), entries.data()); async_data->buffer->Write(entries.data(), 0, async_data->read * sizeof(FileSys::Entry));