X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fcartoons.c;h=fc465fac037bc4dbb32c49b6d7d40a2a8422c749;hb=2d235297197dd0c325184f7fc401d9c5c41c2616;hp=fd53e502a2e955124eaf9c656cb0b721cf83a11a;hpb=74c0f7de91268e40d15948f473eac51a9760b9c0;p=rocksndiamonds.git diff --git a/src/cartoons.c b/src/cartoons.c index fd53e502..fc465fac 100644 --- a/src/cartoons.c +++ b/src/cartoons.c @@ -23,7 +23,15 @@ 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; @@ -74,7 +82,7 @@ void InitToons() 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;