mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Fix ignored qualifier warnings. (nw)
This commit is contained in:
parent
3c5998b7ee
commit
535b12d4bf
@ -27,7 +27,7 @@ union colour_t
|
||||
UINT32 u32;
|
||||
};
|
||||
|
||||
typedef const void (*epic12_device_blitfunction)(bitmap_rgb32 *,
|
||||
typedef void (*epic12_device_blitfunction)(bitmap_rgb32 *,
|
||||
const rectangle *,
|
||||
UINT32 *, /* gfx */
|
||||
int , /* src_x */
|
||||
@ -114,7 +114,7 @@ public:
|
||||
void gfx_exec_unsafe(void);
|
||||
static void *blit_request_callback_unsafe(void *param, int threadid);
|
||||
|
||||
#define BLIT_FUNCTION static const void
|
||||
#define BLIT_FUNCTION static void
|
||||
#define BLIT_PARAMS bitmap_rgb32 *bitmap, const rectangle *clip, UINT32 *gfx, int src_x, int src_y, const int dst_x_start, const int dst_y_start, int dimx, int dimy, const int flipy, const UINT8 s_alpha, const UINT8 d_alpha, const clr_t *tint_clr
|
||||
|
||||
BLIT_FUNCTION draw_sprite_f0_ti0_plain(BLIT_PARAMS);
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* blitter function */
|
||||
|
||||
const void epic12_device::FUNCNAME(BLIT_PARAMS)
|
||||
void epic12_device::FUNCNAME(BLIT_PARAMS)
|
||||
{
|
||||
UINT32* gfx2;
|
||||
int y, yf;
|
||||
|
Loading…
Reference in New Issue
Block a user