Fix signed/unsigned conversion warning in VS.

This commit is contained in:
Stephen Anthony 2018-08-28 22:32:56 -02:30
parent 46b07d14b5
commit 6093bf8375
1 changed files with 1 additions and 1 deletions

View File

@ -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
{ {