summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/popeye.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/popeye.cpp')
-rw-r--r--src/mame/video/popeye.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/video/popeye.cpp b/src/mame/video/popeye.cpp
index a685e1a6d2d..3c6af625e04 100644
--- a/src/mame/video/popeye.cpp
+++ b/src/mame/video/popeye.cpp
@@ -270,13 +270,13 @@ void tnx1_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect)
{
struct attribute_memory
{
- int row;
- int sx;
- uint8_t color;
- uint16_t code;
- int flipx;
- int flipy;
- } attributes[64] = { 0 };
+ int row = 0;
+ int sx = 0;
+ uint8_t color = 0;
+ uint16_t code = 0;
+ int flipx = 0;
+ int flipy = 0;
+ } attributes[64];
for (int offs = 4; offs < m_dmasource.bytes(); offs += 4)
{