Skip to content

Commit

Permalink
Fix endian problems in gte. Now 3D is working again.
Browse files Browse the repository at this point in the history
  • Loading branch information
sepp256 committed Dec 8, 2010
1 parent 09644a6 commit 392b574
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R3000A.h
Expand Up @@ -46,7 +46,7 @@ extern R3000Acpu psxRec;
#endif

typedef union {
#if defined(__BIGENDIAN__)
#if defined(HW_RVL) || defined(HW_DOL) || defined(__BIGENDIAN__)
struct { u8 h3, h2, h, l; } b;
struct { s8 h3, h2, h, l; } sb;
struct { u16 h, l; } w;
Expand Down

0 comments on commit 392b574

Please sign in to comment.