2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

KTransferMemory: Return size instead of size * PageSize in GetSize()

size is already the size in bytes. We do not need to multiply it by the page size
This commit is contained in:
Morph 2021-05-18 13:14:28 -04:00
parent 93bc59b62d
commit 7f78b17e20

View file

@ -52,7 +52,7 @@ public:
}
size_t GetSize() const {
return is_initialized ? size * PageSize : 0;
return is_initialized ? size : 0;
}
private: