fixed Visual Studio warnings about truncated constant in src/emu/cpu/rsp/rsp.c (nw)

This commit is contained in:
Oliver Stöneberg 2014-11-18 09:59:32 +01:00
parent 94eabd6ec7
commit 0eae6a5b6d

View File

@ -1734,13 +1734,13 @@ void rsp_device::handle_vector_ops(UINT32 op)
{
if (ACCUM_H(i) != 0)
{
vres[i] = 0xffff;
vres[i] = 0xffffu;
}
else
{
if ((INT16)ACCUM_M(i) < 0)
{
vres[i] = 0xffff;
vres[i] = 0xffffu;
}
else
{