aboutsummaryrefslogtreecommitdiff
path: root/source/globals.c
diff options
context:
space:
mode:
authorJoão Silva2017-01-29 04:55:23 +0000
committerJoão Silva2017-01-29 04:55:23 +0000
commit0e59b999fa976de2d00490f552a1ff0a27d40f63 (patch)
treeadce7b06d1acc25f52c6e10616451bba02f9f7a5 /source/globals.c
parent813fc89d37d1d8c8d2fa090a28f74aa0fdcea5df (diff)
downloadsnes9x2005-0e59b999fa976de2d00490f552a1ff0a27d40f63.tar.gz
snes9x2005-0e59b999fa976de2d00490f552a1ff0a27d40f63.tar.bz2
snes9x2005-0e59b999fa976de2d00490f552a1ff0a27d40f63.zip
Converted most types to stdint-style (fixing a few in the process).
Diffstat (limited to 'source/globals.c')
-rw-r--r--source/globals.c6
1 files changed, 3 insertions, 3 deletions
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},