From 6ad655e26501f72717d0ba33397cb95f3b8c4b19 Mon Sep 17 00:00:00 2001 From: slack Date: Wed, 11 Mar 2009 02:24:56 +0100 Subject: [PATCH] bugfix to the previous bugfix :P --- core/GBMemory.cc | 2 +- core/GBMemory.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/GBMemory.cc b/core/GBMemory.cc index af5b906..6ef46ce 100644 --- a/core/GBMemory.cc +++ b/core/GBMemory.cc @@ -109,7 +109,7 @@ void GBMemory::write(u16 addr, u8 value, WatchpointControl watch) } } -void GBMemory::write16(u16 addr, u8 value, WatchpointControl watch) +void GBMemory::write16(u16 addr, u16 value, WatchpointControl watch) { write(addr, value & 0xFF, watch); write(addr+1, value >> 8, watch); diff --git a/core/GBMemory.h b/core/GBMemory.h index 3cfcfab..10a9592 100644 --- a/core/GBMemory.h +++ b/core/GBMemory.h @@ -100,7 +100,7 @@ class GBMemory u8 read (u16 addr, WatchpointControl watch = WATCH); u16 read16 (u16 addr, WatchpointControl watch = WATCH); void write (u16 addr, u8 value, WatchpointControl watch = WATCH); - void write16(u16 addr, u8 value, WatchpointControl watch = WATCH); + void write16(u16 addr, u16 value, WatchpointControl watch = WATCH); enum PortAccess { -- 2.34.1