Fixing simulator builds.

- Had forgotten to define mat_load2(), mat_store2(), mat_identity2() for
  simulator builds in rwdc_common.h.
- Just defining them to use the regular versions.
This commit is contained in:
Falco Girgis 2025-04-26 11:28:08 -05:00
parent 04b11dfb9d
commit fc4a7e3791

View file

@ -640,6 +640,10 @@ __hot inline void mat_apply_rotate_z(float z) {
# define mat_transform(a, b, c, d)
# define pvr_fog_table_color(a,r,g,b)
# define pvr_fog_table_linear(s,e)
# else
# define mat_load2(a) mat_load(a)
# define mat_store2(a) mat_store2(a)
# define mat_identity2() mat_identity()
# endif
#define mat_trans_single3_nomod(x_, y_, z_, x2, y2, z2) do { \