From 1e9687196d7e6606e3d0b54998fcf22803fc4ca9 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 24 Mar 2022 15:26:07 +0000 Subject: Atari: Drop bitmap save callback entry; core doesn't use it. --- frontends/atari/bitmap.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/frontends/atari/bitmap.c b/frontends/atari/bitmap.c index e627a3220..5ac15ad4f 100644 --- a/frontends/atari/bitmap.c +++ b/frontends/atari/bitmap.c @@ -248,21 +248,6 @@ void atari_bitmap_destroy(void *bitmap) } -/** - * Save a bitmap in the platform's native format. - * - * \param bitmap a bitmap, as returned by bitmap_create() - * \param path pathname for file - * \param flags flags controlling how the bitmap is saved. - * \return true on success, false on error and error reported - */ - -static bool bitmap_save(void *bitmap, const char *path, unsigned flags) -{ - return true; -} - - /** * Sets whether a bitmap should be plotted opaque * @@ -434,7 +419,6 @@ static struct gui_bitmap_table bitmap_table = { .get_rowstride = atari_bitmap_get_rowstride, .get_width = atari_bitmap_get_width, .get_height = atari_bitmap_get_height, - .save = bitmap_save, .modified = bitmap_modified, .render = bitmap_render, }; -- cgit v1.2.3