From 7cc5afd798b3132254b7aaa637ab4b7a37d99389 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 13 Jun 2019 10:30:26 -0400 Subject: [PATCH] Eliminates another couple of implicit type conversion warnings. --- Processors/68000/Implementation/68000Implementation.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index 7db2f49d1..9171d4ea3 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -1773,8 +1773,8 @@ template void Proces // If this is RTR, patch out the is_supervisor bit. if(decoded_instruction_.full == 0x4e77) { source_bus_data_[0].full = - (source_bus_data_[0].full & ~(1 << 13)) | - (is_supervisor_ << 13); + (source_bus_data_[0].full & uint32_t(~(1 << 13))) | + uint32_t(is_supervisor_ << 13); } set_status(source_bus_data_[0].full); break;