mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 05:57:58 -05:00
Address issues
This commit is contained in:
@ -99,7 +99,7 @@ bool BehaviorInfo::IsSplitterBugFixed() const {
|
||||
|
||||
void BehaviorInfo::CopyErrorInfo(BehaviorInfo::OutParams& dst) {
|
||||
dst.error_count = static_cast<u32>(error_count);
|
||||
std::memcpy(dst.errors.data(), errors.data(), sizeof(ErrorInfo) * dst.errors.size());
|
||||
std::copy(errors.begin(), errors.begin() + error_count, dst.errors.begin());
|
||||
}
|
||||
|
||||
} // namespace AudioCore
|
||||
|
Reference in New Issue
Block a user