diff options
Diffstat (limited to 'src/video_out/alphablend.c')
-rw-r--r-- | src/video_out/alphablend.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/alphablend.c b/src/video_out/alphablend.c index 2f966f7f0..794d602ae 100644 --- a/src/video_out/alphablend.c +++ b/src/video_out/alphablend.c @@ -480,8 +480,9 @@ void blend_rgb16 (uint8_t * img, vo_overlay_t * img_overl, } break; case 6: /* Finished */ - printf("Don't ever get here\n"); - assert(0); + XINE_ASSERT(0,"Don't ever get here\n"); + /* This case will not fall through, XINE_ASSERT contains a call to abort() */ + case 7: /* No button */ clut = (clut_t*) img_overl->color; trans = img_overl->trans; |