Merge pull request #4851 from cam900/patch-88

tc0480scp.cpp : Default mem_mask values
This commit is contained in:
R. Belmont 2019-04-05 16:46:22 -04:00 committed by GitHub
commit 3d9baae4f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,9 +35,9 @@ public:
may be needed when tilemaps use a palette area from sprites. */
u16 ram_r(offs_t offset);
void ram_w(offs_t offset, u16 data, u16 mem_mask);
void ram_w(offs_t offset, u16 data, u16 mem_mask = ~0);
u16 ctrl_r(offs_t offset);
void ctrl_w(offs_t offset, u16 data, u16 mem_mask);
void ctrl_w(offs_t offset, u16 data, u16 mem_mask = ~0);
void tilemap_update();
void tilemap_draw(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, int layer, int flags, u32 priority);