diff options
author | Twinaphex | 2017-01-29 06:00:06 +0100 |
---|---|---|
committer | GitHub | 2017-01-29 06:00:06 +0100 |
commit | b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b (patch) | |
tree | adce7b06d1acc25f52c6e10616451bba02f9f7a5 /source/tile.h | |
parent | 813fc89d37d1d8c8d2fa090a28f74aa0fdcea5df (diff) | |
parent | 0e59b999fa976de2d00490f552a1ff0a27d40f63 (diff) | |
download | snesemu-b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b.tar.gz snesemu-b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b.tar.bz2 snesemu-b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b.zip |
Merge pull request #30 from jamsilva/master
Converted most types to stdint-style (fixing a few in the process).
Diffstat (limited to 'source/tile.h')
-rw-r--r-- | source/tile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/tile.h b/source/tile.h index 427c975..6bc4e23 100644 --- a/source/tile.h +++ b/source/tile.h @@ -172,7 +172,7 @@ pixel = PIXEL; \ for (l = LineCount; l != 0; l--, sp += GFX.PPL, Depth += GFX.PPL) \ { \ - int z; \ + int32_t z; \ for (z = Pixels - 1; z >= 0; z--) \ if (GFX.Z1 > Depth [z]) \ { \ @@ -191,7 +191,7 @@ pixel = PIXEL; \ for (l = LineCount; l != 0; l--, sp += GFX.PPL, Depth += GFX.PPL) \ { \ - int z; \ + int32_t z; \ for (z = Pixels - 1; z >= 0; z--) \ if (GFX.Z1 > Depth [z]) \ { \ @@ -217,7 +217,7 @@ pixel = PIXEL; \ for (l = LineCount; l != 0; l--, sp += GFX.PPL, Depth += GFX.PPL) \ { \ - int z; \ + int32_t z; \ for (z = Pixels - 2; z >= 0; z -= 2) \ if (GFX.Z1 > Depth [z]) \ { \ @@ -236,7 +236,7 @@ pixel = PIXEL; \ for (l = LineCount; l != 0; l--, sp += GFX.PPL, Depth += GFX.PPL) \ { \ - int z; \ + int32_t z; \ for (z = Pixels - 2; z >= 0; z -= 2) \ if (GFX.Z1 > Depth [z]) \ { \ |