summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-05-04 15:56:14 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-05-04 15:56:14 +0200
commita2429f813c139b698169e16f66ef7f357a8c06ed (patch)
tree055e4a985d71117117deca3405aea6116d69a80c
parent9aac2734ef1a97433246fab944f092e73b135a92 (diff)
fix compile with gcc 5.x (nw)
-rw-r--r--src/mame/video/chihiro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/chihiro.c b/src/mame/video/chihiro.c
index c9f11aaeb1a..3cc9175d0d7 100644
--- a/src/mame/video/chihiro.c
+++ b/src/mame/video/chihiro.c
@@ -494,8 +494,8 @@ int vertex_program_simulator::step()
{
int p1, p2;
float tmp[3 * 4];
- float tmpv[4];
- float tmps[4];
+ float tmpv[4] = { 0, 0, 0, 0};
+ float tmps[4] = { 0, 0, 0, 0};
instruction::decoded *d;
#if 0 // useful while debugging to see what instrucion is being executed