bugfix to the previous bugfix :P
authorslack <slack@codemaniacs.com>
Wed, 11 Mar 2009 01:24:56 +0000 (02:24 +0100)
committerslack <slack@codemaniacs.com>
Wed, 11 Mar 2009 01:24:56 +0000 (02:24 +0100)
core/GBMemory.cc
core/GBMemory.h

index af5b906cb836cf458aa73d670e17e8de589d6d62..6ef46ce103d478f404594af375379a2c9b70806d 100644 (file)
@@ -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);
index 3cfcfabf87c2bfcce84e00606cdda6fd0f3d1d00..10a959269bf47276cdccc4beeb453c20633b42b3 100644 (file)
@@ -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
        {