summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-10-06 20:11:28 +0200
committerLioncash <mathew1800@gmail.com>2019-10-06 21:38:12 +0200
commit0705ce0ed16da57b9ab282980b23c18e815e1f85 (patch)
tree127dc57bafe2723948ab1d698cbb71ee11ec24fe /src/core/hle/service/bcat
parentbcat: Take std::function instance by value in NullBackend's constructor (diff)
downloadyuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.tar
yuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.tar.gz
yuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.tar.bz2
yuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.tar.lz
yuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.tar.xz
yuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.tar.zst
yuzu-0705ce0ed16da57b9ab282980b23c18e815e1f85.zip
Diffstat (limited to 'src/core/hle/service/bcat')
-rw-r--r--src/core/hle/service/bcat/module.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/bcat/module.cpp b/src/core/hle/service/bcat/module.cpp
index 4c01bcd99..1f21b0434 100644
--- a/src/core/hle/service/bcat/module.cpp
+++ b/src/core/hle/service/bcat/module.cpp
@@ -451,7 +451,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Push<u32>(write_size * sizeof(DeliveryCacheDirectoryEntry));
+ rb.Push(static_cast<u32>(write_size * sizeof(DeliveryCacheDirectoryEntry)));
}
void GetCount(Kernel::HLERequestContext& ctx) {
@@ -468,7 +468,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Push<u32>(files.size());
+ rb.Push(static_cast<u32>(files.size()));
}
FileSys::VirtualDir root;
@@ -525,7 +525,7 @@ private:
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Push<u32>(size);
+ rb.Push(static_cast<u32>(size));
}
FileSys::VirtualDir root;