aboutsummaryrefslogtreecommitdiff
path: root/source/dma.h
diff options
context:
space:
mode:
authoraliaspider2014-11-03 15:26:54 +0100
committeraliaspider2014-11-03 15:26:54 +0100
commit4a54fd4018adf931fb436acba2399efc6d6d1176 (patch)
treeefba5c3c8e1057bce6a7fff834f2dcda36707e5a /source/dma.h
parentc599f551ea0862b397b2e8b1ca4b441b4ab8c8f1 (diff)
downloadsnesemu-4a54fd4018adf931fb436acba2399efc6d6d1176.tar.gz
snesemu-4a54fd4018adf931fb436acba2399efc6d6d1176.tar.bz2
snesemu-4a54fd4018adf931fb436acba2399efc6d6d1176.zip
use stdint/stdbool
Diffstat (limited to 'source/dma.h')
-rw-r--r--source/dma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/dma.h b/source/dma.h
index 2d0b687..92991f9 100644
--- a/source/dma.h
+++ b/source/dma.h
@@ -91,9 +91,9 @@
#define _DMA_H_
void S9xResetDMA(void);
-uint8 S9xDoHDMA(uint8);
+uint8_t S9xDoHDMA(uint8_t);
void S9xStartHDMA();
-void S9xDoDMA(uint8);
+void S9xDoDMA(uint8_t);
#endif