mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix reversed endianness that crept in at some point. Blue is now blue
instead of pink. MFC after: 3 days
This commit is contained in:
parent
b545252a16
commit
67530f82dd
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ ps3fb_init(struct vt_device *vd)
|
|||
|
||||
/* 32-bit VGA palette */
|
||||
vt_generate_cons_palette(sc->fb_info.fb_cmap, COLOR_FORMAT_RGB,
|
||||
255, 0, 255, 8, 255, 16);
|
||||
255, 16, 255, 8, 255, 0);
|
||||
|
||||
/* Set correct graphics context */
|
||||
lv1_gpu_context_attribute(sc->sc_fbcontext,
|
||||
|
|
|
|||
Loading…
Reference in a new issue