diff options
| author | Bertrand Augereau | 2007-04-16 20:06:35 +0000 | 
|---|---|---|
| committer | Bertrand Augereau | 2007-04-16 20:06:35 +0000 | 
| commit | bf7123548ab5dc5f3eef105ea4d58a30f4844c29 (patch) | |
| tree | 7393b94eab2a95ae2666edb85fe42bf5ea2e2f63 /backends/platform/ds | |
| parent | 31d728bf55b6a5c3f7d35fae1657c794e6bdad9c (diff) | |
| download | scummvm-rg350-bf7123548ab5dc5f3eef105ea4d58a30f4844c29.tar.gz scummvm-rg350-bf7123548ab5dc5f3eef105ea4d58a30f4844c29.tar.bz2 scummvm-rg350-bf7123548ab5dc5f3eef105ea4d58a30f4844c29.zip | |
NDS : Trunk fix for latest libnds
svn-id: r26529
Diffstat (limited to 'backends/platform/ds')
| -rw-r--r-- | backends/platform/ds/arm9/source/fat/disc_io.c | 2 | ||||
| -rw-r--r-- | backends/platform/ds/arm9/source/fat/io_dldi.h | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/backends/platform/ds/arm9/source/fat/disc_io.c b/backends/platform/ds/arm9/source/fat/disc_io.c index 3cb70f510b..c706cf8b3e 100644 --- a/backends/platform/ds/arm9/source/fat/disc_io.c +++ b/backends/platform/ds/arm9/source/fat/disc_io.c @@ -358,7 +358,7 @@ void disc_getDldiId(char* id) {  bool disc_setDsSlotInterface (void)  {  #ifdef ARM9 -	REG_EXEMEMCNT &= ~(1<<11); +	REG_EXMEMCNT &= ~(1<<11);  #endif  #ifdef ARM7  	REG_EXEMEMCNT |= (1<<11); diff --git a/backends/platform/ds/arm9/source/fat/io_dldi.h b/backends/platform/ds/arm9/source/fat/io_dldi.h index 053de3a94c..86c3407374 100644 --- a/backends/platform/ds/arm9/source/fat/io_dldi.h +++ b/backends/platform/ds/arm9/source/fat/io_dldi.h @@ -30,7 +30,7 @@ extern u8 _dldi_driver_name;  static inline LPIO_INTERFACE DLDI_GetInterface(void) {  #ifdef NDS  	// NDM: I'm really not sure about this change ARM9 - ARM7 -	REG_EXEMEMCNT &= ~(ARM7_OWNS_ROM | ARM7_OWNS_CARD); +	REG_EXMEMCNT &= ~(ARM7_OWNS_ROM | ARM7_OWNS_CARD);  #endif // defined NDS  	return &_io_dldi;  } | 
