aboutsummaryrefslogtreecommitdiff
path: root/source/seta.c
diff options
context:
space:
mode:
authoraliaspider2014-11-03 15:26:54 +0100
committeraliaspider2014-11-03 15:26:54 +0100
commit4a54fd4018adf931fb436acba2399efc6d6d1176 (patch)
treeefba5c3c8e1057bce6a7fff834f2dcda36707e5a /source/seta.c
parentc599f551ea0862b397b2e8b1ca4b441b4ab8c8f1 (diff)
downloadsnesemu-4a54fd4018adf931fb436acba2399efc6d6d1176.tar.gz
snesemu-4a54fd4018adf931fb436acba2399efc6d6d1176.tar.bz2
snesemu-4a54fd4018adf931fb436acba2399efc6d6d1176.zip
use stdint/stdbool
Diffstat (limited to 'source/seta.c')
-rw-r--r--source/seta.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/seta.c b/source/seta.c
index cce8330..895fa32 100644
--- a/source/seta.c
+++ b/source/seta.c
@@ -88,15 +88,15 @@
*******************************************************************************/
#include "seta.h"
-void (*SetSETA)(uint32, uint8) = &S9xSetST010;
-uint8(*GetSETA)(uint32) = &S9xGetST010;
+void (*SetSETA)(uint32_t, uint8_t) = &S9xSetST010;
+uint8_t(*GetSETA)(uint32_t) = &S9xGetST010;
-uint8 S9xGetSetaDSP(uint32 Address)
+uint8_t S9xGetSetaDSP(uint32_t Address)
{
return GetSETA(Address);
}
-void S9xSetSetaDSP(uint8 Byte, uint32 Address)
+void S9xSetSetaDSP(uint8_t Byte, uint32_t Address)
{
SetSETA(Address, Byte);
}