Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
nishinji committed Sep 24, 2024
1 parent 77abeaa commit 184cfb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vita3k/codec/src/atrac9.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ bool Atrac9DecoderState::send(const uint8_t *data, uint32_t size) {

const int res = Atrac9Decode(decoder_handle, data, reinterpret_cast<short *>(result.data()), &decode_used);
if (res != At9Status::ERR_SUCCESS) {
LOG_ERROR("Decode failure with code {}", res);
LOG_ERROR("Decode failure with code {}", log_hex(res));
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion vita3k/io/src/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ int write_file(SceUID fd, const void *data, const SceSize size, const IOState &i
assert(size >= 0);

if (fd < 0) {
LOG_WARN("Error writing fd: {}, size: {}", fd, size);
LOG_WARN("Error writing fd: {}, size: {}", log_hex(fd), size);
return IO_ERROR(SCE_ERROR_ERRNO_EBADFD);
}

Expand Down

0 comments on commit 184cfb1

Please sign in to comment.