aboutsummaryrefslogtreecommitdiff
path: root/source/data.c
diff options
context:
space:
mode:
authoraliaspider2014-11-03 15:26:54 +0100
committeraliaspider2014-11-03 15:26:54 +0100
commit4a54fd4018adf931fb436acba2399efc6d6d1176 (patch)
treeefba5c3c8e1057bce6a7fff834f2dcda36707e5a /source/data.c
parentc599f551ea0862b397b2e8b1ca4b441b4ab8c8f1 (diff)
downloadsnes9x2005-4a54fd4018adf931fb436acba2399efc6d6d1176.tar.gz
snes9x2005-4a54fd4018adf931fb436acba2399efc6d6d1176.tar.bz2
snes9x2005-4a54fd4018adf931fb436acba2399efc6d6d1176.zip
use stdint/stdbool
Diffstat (limited to 'source/data.c')
-rw-r--r--source/data.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/data.c b/source/data.c
index ba52a5d..5b7954a 100644
--- a/source/data.c
+++ b/source/data.c
@@ -89,7 +89,7 @@
#include "snes9x.h"
-uint8 add32_32 [32][32] =
+uint8_t add32_32 [32][32] =
{
{
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
@@ -253,7 +253,7 @@ uint8 add32_32 [32][32] =
}
};
-uint8 add32_32_half [32][32] =
+uint8_t add32_32_half [32][32] =
{
{
0x00, 0x00, 0x01, 0x01, 0x02, 0x02, 0x03, 0x03, 0x04, 0x04, 0x05, 0x05, 0x06, 0x06, 0x07,
@@ -416,7 +416,7 @@ uint8 add32_32_half [32][32] =
0x1e, 0x1f
}
};
-uint8 sub32_32 [32][32] =
+uint8_t sub32_32 [32][32] =
{
{
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
@@ -580,7 +580,7 @@ uint8 sub32_32 [32][32] =
}
};
-uint8 sub32_32_half [32][32] =
+uint8_t sub32_32_half [32][32] =
{
{
0x00, 0x00, 0x01, 0x01, 0x02, 0x02, 0x03, 0x03, 0x04, 0x04, 0x05, 0x05, 0x06, 0x06, 0x07,
@@ -745,7 +745,7 @@ uint8 sub32_32_half [32][32] =
};
-uint8 mul_brightness [16][32] =
+uint8_t mul_brightness [16][32] =
{
{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,