mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
fixed Visual Studio warnings about truncated constant in src/emu/cpu/rsp/rsp.c (nw)
This commit is contained in:
parent
94eabd6ec7
commit
0eae6a5b6d
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user