summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2019-04-05 16:46:22 -0400
committer GitHub <noreply@github.com>2019-04-05 16:46:22 -0400
commit3d9baae4f4ae8551c019e9e27f6bc506798cd010 (patch)
treed0283cf131cbd64fe36bd843f4f1cdc1027da57b
parent6281fb3cab0c6b6383116626c7b418817ea71c3a (diff)
parent199b380d2709a38f4f7430d82996714bf8f5ca88 (diff)
Merge pull request #4851 from cam900/patch-88
tc0480scp.cpp : Default mem_mask values
-rw-r--r--src/mame/video/tc0480scp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/tc0480scp.h b/src/mame/video/tc0480scp.h
index b79373d4617..7146d6bbdf4 100644
--- a/src/mame/video/tc0480scp.h
+++ b/src/mame/video/tc0480scp.h
@@ -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);