diff options
author | Max Horn | 2010-11-18 17:01:30 +0000 |
---|---|---|
committer | Max Horn | 2010-11-18 17:01:30 +0000 |
commit | b8f00267398d2a1722ed550beee8178bc2a9ac6f (patch) | |
tree | 9591961d3c0a69f6bc02f42a77d60d000a7e7fc8 /backends/platform/ds/arm9/source/fat | |
parent | 1621e7d5c0ea5aca51c72040fffd589f41573847 (diff) | |
download | scummvm-rg350-b8f00267398d2a1722ed550beee8178bc2a9ac6f.tar.gz scummvm-rg350-b8f00267398d2a1722ed550beee8178bc2a9ac6f.tar.bz2 scummvm-rg350-b8f00267398d2a1722ed550beee8178bc2a9ac6f.zip |
DS: Port changes from 1.2.0 branch to trunk
svn-id: r54325
Diffstat (limited to 'backends/platform/ds/arm9/source/fat')
-rw-r--r-- | backends/platform/ds/arm9/source/fat/gba_nds_fat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/platform/ds/arm9/source/fat/gba_nds_fat.c b/backends/platform/ds/arm9/source/fat/gba_nds_fat.c index 07affd8839..7f0757ef53 100644 --- a/backends/platform/ds/arm9/source/fat/gba_nds_fat.c +++ b/backends/platform/ds/arm9/source/fat/gba_nds_fat.c @@ -194,7 +194,8 @@ const char lfn_offset_table[13]={0x01,0x03,0x05,0x07,0x09,0x0E,0x10,0x12,0x14,0x // available: IWRAM on NDS ARM7, EWRAM on NDS ARM9 and GBA // Files -_VARS_IN_RAM FAT_FILE openFiles[MAX_FILES_OPEN]; +FAT_FILE openFiles[MAX_FILES_OPEN] __attribute__((section(".itcm"))); +//_VARS_IN_RAM // Long File names _VARS_IN_RAM char lfnName[MAX_FILENAME_LENGTH]; |