X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fcartoons.c;h=9b6626b6cc777b76cb8f06908b968007adc09269;hb=37a06df577bbfd00f4b361f92cacb0d97036ba93;hp=5bacdf29c3aad8c6dcd3d1e6c3984617d3a92a87;hpb=9073d88279c0b9c5be103a6bb4d5c608ab0d90cc;p=rocksndiamonds.git diff --git a/src/cartoons.c b/src/cartoons.c index 5bacdf29..9b6626b6 100644 --- a/src/cartoons.c +++ b/src/cartoons.c @@ -23,16 +23,24 @@ static struct ToonInfo toons[MAX_NUM_TOONS]; static void PrepareBackbuffer() { - /* Fill empty backbuffer for animation functions */ + if (game_status == GAME_MODE_PLAYING && + level.game_engine_type == GAME_ENGINE_TYPE_EM) + { + BlitScreenToBitmap_EM(backbuffer); + + return; + } + + /* fill empty backbuffer for animation functions */ if (setup.direct_draw && game_status == GAME_MODE_PLAYING) { - int xx,yy; + int xx, yy; SetDrawtoField(DRAW_BACKBUFFER); - for(xx=0; xx 0 && global.num_toons < MAX_NUM_TOONS) + if (global.num_toons >= 0 && global.num_toons < MAX_NUM_TOONS) num_toons = global.num_toons; - for (i=0; i < num_toons; i++) + for (i = 0; i < num_toons; i++) { int graphic = IMG_TOON_1 + i; - struct FileInfo *image = getImageListEntry(graphic); + struct FileInfo *image = getImageListEntryFromImageID(graphic); toons[i].bitmap = graphic_info[graphic].bitmap;