diff options
author | Sam Spilsbury <smspillaz@gmail.com> | 2016-03-27 06:03:44 +0200 |
---|---|---|
committer | Sam Spilsbury <smspillaz@gmail.com> | 2016-04-23 05:54:02 +0200 |
commit | 040b7386a92fcadc5c4b08643299567de876c4d6 (patch) | |
tree | 1f4b7520029779d41306b6939b8be23c29753588 /src/core/hle | |
parent | gdbstub: Don't check if unsigned int is > 0 (diff) | |
download | yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.tar yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.tar.gz yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.tar.bz2 yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.tar.lz yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.tar.xz yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.tar.zst yuzu-040b7386a92fcadc5c4b08643299567de876c4d6.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/fs/fs_user.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/fs_user.cpp b/src/core/hle/service/fs/fs_user.cpp index 3ec7ceb30..7df7da5a4 100644 --- a/src/core/hle/service/fs/fs_user.cpp +++ b/src/core/hle/service/fs/fs_user.cpp @@ -250,7 +250,7 @@ static void CreateFile(Service::Interface* self) { FileSys::Path file_path(filename_type, filename_size, filename_ptr); - LOG_DEBUG(Service_FS, "type=%d size=%llu data=%s", filename_type, filename_size, file_path.DebugStr().c_str()); + LOG_DEBUG(Service_FS, "type=%d size=%llu data=%s", filename_type, file_size, file_path.DebugStr().c_str()); cmd_buff[1] = CreateFileInArchive(archive_handle, file_path, file_size).raw; } |