diff --git a/rpcs3/Emu/Cell/SPUThread.h b/rpcs3/Emu/Cell/SPUThread.h index 4267ac40e0..760c7cebe6 100644 --- a/rpcs3/Emu/Cell/SPUThread.h +++ b/rpcs3/Emu/Cell/SPUThread.h @@ -258,8 +258,7 @@ public: sync_var.atomic_op([&out_result, &out_value, &out_count, last_value](sync_var_t& data) { - // TODO:: Syphurith: I don't know what you tried to express, exactly. - if ((out_result = data.count != 0)) + if (out_result = (data.count != 0)) { out_value = data.value0; out_count = --data.count; diff --git a/rpcs3/Emu/SysCalls/Modules/cellDmux.cpp b/rpcs3/Emu/SysCalls/Modules/cellDmux.cpp index ace09d923d..393e2cc541 100644 --- a/rpcs3/Emu/SysCalls/Modules/cellDmux.cpp +++ b/rpcs3/Emu/SysCalls/Modules/cellDmux.cpp @@ -148,7 +148,6 @@ void ElementaryStream::push_au(u32 size, u64 dts, u64 pts, u64 userdata, bool ra u32 addr; { std::lock_guard lock(m_mutex); - // TODO:: Syphurith: Should us convert this to a if statement? Since Asserts aren't included in Release builds. assert(!is_full(size)); if (put + size + 128 > memAddr + memSize)