- fixed spritesheet conversion and setup
[gba_blender] / src / dma.h
index 96b1806..81dfe99 100644 (file)
--- a/src/dma.h
+++ b/src/dma.h
@@ -18,8 +18,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #ifndef _DMA_H_
 #define _DMA_H_
 
-void dma_copy32(int channel, void *dst, void *src, int words);
-void dma_copy16(int channel, void *dst, void *src, int halfwords);
+void dma_copy32(int channel, void *dst, void *src, int words, unsigned int flags);
+void dma_copy16(int channel, void *dst, void *src, int halfwords, unsigned int flags);
 
 void dma_fill32(int channel, void *dst, unsigned long val, int words);
 void dma_fill16(int channel, void *dst, unsigned short val, int halfwords);