mirror of
https://github.com/wiiu-env/libmocha.git
synced 2024-11-16 16:39:26 +01:00
Improve logging
This commit is contained in:
parent
18c87e8ca3
commit
0d698cc18f
@ -104,10 +104,10 @@ FSError FSAEx_RawReadEx(int clientHandle, void *data, uint32_t size_bytes, uint3
|
||||
if ((uint32_t) data & 0x3F) {
|
||||
auto *alignedBuffer = memalign(0x40, ROUNDUP(size_bytes * cnt, 0x40));
|
||||
if (!alignedBuffer) {
|
||||
DEBUG_FUNCTION_LINE_ERR("FSAEx_RawReadEx buffer not aligned (%08X).\n", data);
|
||||
DEBUG_FUNCTION_LINE_ERR("Buffer not aligned (%08X).\n", data);
|
||||
return FS_ERROR_INVALID_ALIGNMENT;
|
||||
}
|
||||
DEBUG_FUNCTION_LINE_WARN("FSAEx_RawReadEx buffer not aligned (%08X). Align to 0x40 for best performance\n", data);
|
||||
DEBUG_FUNCTION_LINE_WARN("Buffer not aligned (%08X). Align to 0x40 for best performance\n", data);
|
||||
tmp = alignedBuffer;
|
||||
}
|
||||
|
||||
@ -162,10 +162,10 @@ FSError FSAEx_RawWriteEx(int clientHandle, const void *data, uint32_t size_bytes
|
||||
if ((uint32_t) data & 0x3F) {
|
||||
auto *alignedBuffer = memalign(0x40, ROUNDUP(size_bytes * cnt, 0x40));
|
||||
if (!alignedBuffer) {
|
||||
OSReport("## ERROR: FSAEx_RawWriteEx buffer not aligned (%08X).\n", data);
|
||||
DEBUG_FUNCTION_LINE_ERR("Buffer not aligned (%08X).", data);
|
||||
return FS_ERROR_INVALID_ALIGNMENT;
|
||||
}
|
||||
OSReport("## WARNING: FSAEx_RawWriteEx buffer not aligned (%08X). Align to 0x40 for best performance\n", data);
|
||||
DEBUG_FUNCTION_LINE_WARN("Buffer not aligned (%08X). Align to 0x40 for best performance", data);
|
||||
tmp = alignedBuffer;
|
||||
memcpy(tmp, data, size_bytes * cnt);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user