Skip to content

Commit

Permalink
Fix bug in writeSafe<Translaion>
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdaler committed Oct 21, 2024
1 parent cb8872b commit 7d0c08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mips/psyqo/gte-registers.hh
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ inline void writeSafe<PseudoRegister::V2>(const Vec3& in) {
template <>
inline void writeSafe<PseudoRegister::Translation>(const Vec3& in) {
write<Register::TRX, Unsafe>(in.x.raw());
write<Register::TRX, Unsafe>(in.y.raw());
write<Register::TRY, Unsafe>(in.y.raw());
write<Register::TRZ, Safe>(in.z.raw());
}

Expand Down

0 comments on commit 7d0c08f

Please sign in to comment.