musicpal: Fix regression caused by 6839 (Jan Kiszka)
Pass correct DisplayState field to is_surface_bgr(). Signed-off-by: Jan Kiszka <jan.kiszka@web.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6898 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
0fe17f5efb
commit
bf9b48af99
@ -831,7 +831,8 @@ static void lcd_refresh(void *opaque)
|
|||||||
break;
|
break;
|
||||||
LCD_REFRESH(8, rgb_to_pixel8)
|
LCD_REFRESH(8, rgb_to_pixel8)
|
||||||
LCD_REFRESH(16, rgb_to_pixel16)
|
LCD_REFRESH(16, rgb_to_pixel16)
|
||||||
LCD_REFRESH(32, (is_surface_bgr(s->ds) ? rgb_to_pixel32bgr : rgb_to_pixel32))
|
LCD_REFRESH(32, (is_surface_bgr(s->ds->surface) ?
|
||||||
|
rgb_to_pixel32bgr : rgb_to_pixel32))
|
||||||
default:
|
default:
|
||||||
cpu_abort(cpu_single_env, "unsupported colour depth %i\n",
|
cpu_abort(cpu_single_env, "unsupported colour depth %i\n",
|
||||||
ds_get_bits_per_pixel(s->ds));
|
ds_get_bits_per_pixel(s->ds));
|
||||||
|
Loading…
Reference in New Issue
Block a user