diff options
author | archshift <admin@archshift.com> | 2015-02-26 19:11:39 -0800 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-02-27 19:15:08 -0800 |
commit | 7f9ee69a2bc769042433dba3970137b7be9afa03 (patch) | |
tree | 096b6debc487a7a87037808130484fe763bb4f6e /src/video_core/pica.h | |
parent | c9ef377afaa038797de6c08da9f204acf67ed1fc (diff) |
Added RGBA5551 compatibility in the rasterizer
This allows Virtual Console games to display properly.
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r-- | src/video_core/pica.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index d03b811d3..96d0c72fe 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -409,6 +409,7 @@ struct Regs { } output_merger; struct { + // Components are laid out in reverse byte order, most significant bits first. enum ColorFormat : u32 { RGBA8 = 0, RGB8 = 1, |