X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fx11.c;h=6f14c37f54d7dc189b605b24ffc5d9152ce8e811;hb=92204d79d159df0be4bd05c4b4e4dabbcaefe805;hp=d8e5186398c603e502c12190793d7bfddba10964;hpb=3d52a86d358f5b1a4b36b80df5d659bce1f5a3a6;p=rocksndiamonds.git diff --git a/src/libgame/x11.c b/src/libgame/x11.c index d8e51863..6f14c37f 100644 --- a/src/libgame/x11.c +++ b/src/libgame/x11.c @@ -232,10 +232,6 @@ static DrawWindow *X11InitWindow() return new_window; } -inline void X11NativeZoomBitmap(Bitmap *src_bitmap, Bitmap *dst_bitmap) -{ -} - void X11ZoomBitmap(Bitmap *src_bitmap, Bitmap *dst_bitmap) { #if defined(TARGET_ALLEGRO) @@ -243,7 +239,10 @@ void X11ZoomBitmap(Bitmap *src_bitmap, Bitmap *dst_bitmap) src_bitmap->width, src_bitmap->height, dst_bitmap->width, dst_bitmap->height); #else - X11NativeZoomBitmap(src_bitmap, dst_bitmap); + ZoomPixmap(display, src_bitmap->gc, + src_bitmap->drawable, dst_bitmap->drawable, + src_bitmap->width, src_bitmap->height, + dst_bitmap->width, dst_bitmap->height); #endif }