$value = SDL::Video::set_colors($display, 0, SDL::Color->new(0,0,0));
is( $value , 0, '[set_colors] returns 0 trying to write to 32 bit display' );
-$value = SDL::Video::set_palette($display, 0x01|0x02, 0);
+$value = SDL::Video::set_palette($display, SDL_LOGPAL|0x02, 0);
is( $value , 0, '[set_palette] returns 0 trying to write to 32 bit surface' );
$value = SDL::Video::set_colors($hwdisplay, 0);
is( $value , 0, '[set_colors] returns 0 trying to send empty colors to 8 bit surface' );
-$value = SDL::Video::set_palette($hwdisplay, 0x01|0x02, 0);
+$value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|0x02, 0);
is( $value , 0, '[set_palette] returns 0 trying to send empty colors to 8 bit surface' );
$value = SDL::Video::set_colors($hwdisplay, 0, @b_w_colors);
is( $value , 1, '[set_colors] returns '.$value );
-$value = SDL::Video::set_palette($hwdisplay, 0x01|0x02, 0, @b_w_colors );
+$value = SDL::Video::set_palette($hwdisplay, SDL_LOGPAL|0x02, 0, @b_w_colors );
is( $value , 1, '[set_palette] returns 1' );