mirror of https://github.com/stella-emu/stella.git
Fix signed/unsigned conversion warning in VS.
This commit is contained in:
parent
46b07d14b5
commit
6093bf8375
|
@ -771,7 +771,7 @@ int Thumbulator::execute()
|
||||||
if(rc & 0x80000000)
|
if(rc & 0x80000000)
|
||||||
{
|
{
|
||||||
do_cflag_bit(1);
|
do_cflag_bit(1);
|
||||||
rc = ~0;
|
rc = ~0u;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue