From 4a54fd4018adf931fb436acba2399efc6d6d1176 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Mon, 3 Nov 2014 15:26:54 +0100 Subject: use stdint/stdbool --- source/seta.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/seta.c') 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); } -- cgit v1.2.3