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/globals.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/globals.c') diff --git a/source/globals.c b/source/globals.c index e65d1b5..eecb297 100644 --- a/source/globals.c +++ b/source/globals.c @@ -41,7 +41,7 @@ SnesModel* Model = &M1SNES; uint8_t* C4RAM = NULL; -long OpAddress = 0; +int32_t OpAddress = 0; CMemory Memory; @@ -97,7 +97,7 @@ uint16_t SignExtend [2] = }; //modified per anomie Mode 5 findings -int HDMA_ModeByteCounts [8] = +int32_t HDMA_ModeByteCounts [8] = { 1, 2, 2, 4, 4, 4, 2, 4 }; @@ -163,7 +163,7 @@ uint8_t BGSizes [2] = }; uint16_t DirectColourMaps [8][256]; -long FilterValues[4][2] = +int32_t FilterValues[4][2] = { {0, 0}, {240, 0}, -- cgit v1.2.3