From 0e59b999fa976de2d00490f552a1ff0a27d40f63 Mon Sep 17 00:00:00 2001 From: João Silva Date: Sun, 29 Jan 2017 04:55:23 +0000 Subject: Converted most types to stdint-style (fixing a few in the process). --- source/display.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/display.h') diff --git a/source/display.h b/source/display.h index d43d4ff..cee60bb 100644 --- a/source/display.h +++ b/source/display.h @@ -4,13 +4,13 @@ #define _DISPLAY_H_ // Routines the port specific code has to implement -uint32_t S9xReadJoypad(int port); -bool S9xReadMousePosition(int which1_0_to_1, int* x, int* y, uint32_t* buttons); -bool S9xReadSuperScopePosition(int* x, int* y, uint32_t* buttons); +uint32_t S9xReadJoypad(int32_t port); +bool S9xReadMousePosition(int32_t which1_0_to_1, int32_t* x, int32_t* y, uint32_t* buttons); +bool S9xReadSuperScopePosition(int32_t* x, int32_t* y, uint32_t* buttons); void S9xInitDisplay(void); void S9xDeinitDisplay(); -void S9xToggleSoundChannel(int channel); +void S9xToggleSoundChannel(int32_t channel); void S9xSetInfoString(const char* string); void S9xNextController(); bool S9xLoadROMImage(const char* string); -- cgit v1.2.3