From 11ab02167212a1aecfc272c402b4dfd7854dfa60 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 13 Jun 2019 10:27:49 -0400 Subject: [PATCH] Further reduces implicit conversion warnings, to 17. --- .../68000/Implementation/68000Implementation.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index aebe3d3a3..7db2f49d1 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -1079,16 +1079,16 @@ template void Proces case Operation::MOVEPtoRw: // Read pattern is nRd+ nrd. - active_program_->source->halves.low.halves.high = destination_bus_data_[0].halves.high.full; - active_program_->source->halves.low.halves.low = destination_bus_data_[0].halves.low.full; + active_program_->source->halves.low.halves.high = destination_bus_data_[0].halves.high.halves.low; + active_program_->source->halves.low.halves.low = destination_bus_data_[0].halves.low.halves.low; break; case Operation::MOVEPtoRl: // Read pattern is nRd+ nR+ nrd+ nr. - active_program_->source->halves.high.halves.high = destination_bus_data_[0].halves.high.full; - active_program_->source->halves.high.halves.low = source_bus_data_[0].halves.high.full; - active_program_->source->halves.low.halves.high = destination_bus_data_[0].halves.low.full; - active_program_->source->halves.low.halves.low = source_bus_data_[0].halves.low.full; + active_program_->source->halves.high.halves.high = destination_bus_data_[0].halves.high.halves.low; + active_program_->source->halves.high.halves.low = source_bus_data_[0].halves.high.halves.low; + active_program_->source->halves.low.halves.high = destination_bus_data_[0].halves.low.halves.low; + active_program_->source->halves.low.halves.low = source_bus_data_[0].halves.low.halves.low; break; /*