Skip to content

Commit

Permalink
Update cellAudio.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Aug 25, 2021
1 parent e902a2e commit c49f594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/Modules/cellAudio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,7 @@ error_code cellAudioGetPortTimestamp(u32 portNum, u64 tag, vm::ptr<u64> stamp)
const u64 delta_tag_stamp = delta_tag * g_audio.cfg.audio_block_period;

// Apparently no error is returned if stamp is null
*stamp = port.timestamp - delta_tag_stamp;
*stamp = get_guest_system_time(port.timestamp - delta_tag_stamp);

return CELL_OK;
}
Expand Down

0 comments on commit c49f594

Please sign in to comment.