1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Change type for BlueNoiseItem fields from char to signed char.

It should fix compilation on ARM.
This commit is contained in:
Sergey Lipskiy 2020-04-06 19:58:57 +07:00
parent c168f53d12
commit 0cca2fa2fe

View File

@ -2,7 +2,7 @@
struct BlueNoiseItem struct BlueNoiseItem
{ {
char r, g, b; signed char r, g, b;
}; };
extern const BlueNoiseItem blueNoiseTex[8][64][64]; extern const BlueNoiseItem blueNoiseTex[8][64][64];