summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/chihiro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/chihiro.cpp')
-rw-r--r--src/mame/video/chihiro.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/chihiro.cpp b/src/mame/video/chihiro.cpp
index f5d413e814e..e581ebf852e 100644
--- a/src/mame/video/chihiro.cpp
+++ b/src/mame/video/chihiro.cpp
@@ -2698,7 +2698,7 @@ int nv2a_renderer::geforce_exec_method(address_space & space, UINT32 chanel, UIN
}
}
else {
- machine().logerror("Unsupported primitive %d for method 0x1810\n", primitive_type);
+ machine().logerror("Unsupported primitive %d for method 0x1810\n", int(primitive_type));
}
countlen--;
}
@@ -2845,7 +2845,7 @@ int nv2a_renderer::geforce_exec_method(address_space & space, UINT32 chanel, UIN
}
}
else {
- machine().logerror("Unsupported primitive %d for method 0x1800/8\n", primitive_type);
+ machine().logerror("Unsupported primitive %d for method 0x1800/8\n", int(primitive_type));
countlen = 0;
}
while (countlen > 0) {
@@ -3025,7 +3025,7 @@ int nv2a_renderer::geforce_exec_method(address_space & space, UINT32 chanel, UIN
}
}
else {
- machine().logerror("Unsupported primitive %d for method 0x1818\n", primitive_type);
+ machine().logerror("Unsupported primitive %d for method 0x1818\n", int(primitive_type));
countlen = 0;
}
}
@@ -3164,7 +3164,7 @@ int nv2a_renderer::geforce_exec_method(address_space & space, UINT32 chanel, UIN
bytespixel_rendertarget = 1;
break;
default:
- machine().logerror("Unknown render target color format %d\n\r", colorformat_rendertarget);
+ machine().logerror("Unknown render target color format %d\n\r", int(colorformat_rendertarget));
bytespixel_rendertarget = 4;
break;
}
@@ -3174,7 +3174,7 @@ int nv2a_renderer::geforce_exec_method(address_space & space, UINT32 chanel, UIN
pitch_rendertarget=data & 0xffff;
pitch_depthbuffer=(data >> 16) & 0xffff;
#ifdef LOG_NV2A
- printf("Pitch color %04X zbuffer %04X\n\r",pitch_rendertarget,pitch_depthbuffer);
+ printf("Pitch color %04X zbuffer %04X\n\r", pitch_rendertarget, pitch_depthbuffer);
#endif
countlen--;
}