Kytag3 done (#2149)

* kytag3 done

* remove asm

* fix d_envse
This commit is contained in:
TakaRikka
2024-05-06 20:56:03 +03:00
committed by GitHub
parent 7a528eb5b6
commit e1147cf047
20 changed files with 498 additions and 2411 deletions
+6
View File
@@ -45,6 +45,12 @@ template <>
struct TVec3<s16> {
s16 x, y, z;
TVec3() {}
TVec3(s16 x, s16 y, s16 z) {
set(x, y, z);
}
TVec3& operator=(const TVec3& b) {
// Force copies to use lwz/lha
*((s32*)this) = *((s32*)&b);