diff options
| author | Ray <raysan5@gmail.com> | 2018-11-30 01:57:53 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2018-11-30 01:57:53 +0100 |
| commit | 1774260dab789c00d31b9e17bb5eeab38f81be1c (patch) | |
| tree | f9c8929aa22f29131a10c337651a3cada8713ee6 /src | |
| parent | 874c0910e33a1762c06148f2b0ea58e107beb7de (diff) | |
| download | raylib-1774260dab789c00d31b9e17bb5eeab38f81be1c.tar.gz raylib-1774260dab789c00d31b9e17bb5eeab38f81be1c.zip | |
Some tweaks
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 2 | ||||
| -rw-r--r-- | src/core.c | 4 | ||||
| -rw-r--r-- | src/textures.c | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile index d7a0156e..173cfa75 100644 --- a/src/Makefile +++ b/src/Makefile @@ -148,7 +148,7 @@ endif ifeq ($(PLATFORM),PLATFORM_WEB) # Emscripten required variables - EMSDK_PATH = D:/emsdk + EMSDK_PATH = C:/emsdk EMSCRIPTEN_VERSION = 1.38.20 CLANG_VERSION = e1.38.20_64bit PYTHON_VERSION = 2.7.13.1_64bit\python-2.7.13.amd64 @@ -1436,8 +1436,6 @@ Color GetColor(int hexValue) return color; } - - // Returns a random value between min and max (both included) int GetRandomValue(int min, int max) { @@ -1448,7 +1446,7 @@ int GetRandomValue(int min, int max) min = tmp; } - return (rand()%(abs(max-min)+1) + min); + return (rand()%(abs(max - min) + 1) + min); } // Color fade-in or fade-out, alpha goes from 0.0f to 1.0f diff --git a/src/textures.c b/src/textures.c index fbb95863..8169aae8 100644 --- a/src/textures.c +++ b/src/textures.c @@ -1371,7 +1371,7 @@ void ImageDither(Image *image, int rBpp, int gBpp, int bBpp, int aBpp) return; } - if ((rBpp+gBpp+bBpp+aBpp) > 16) + if ((rBpp + gBpp + bBpp + aBpp) > 16) { TraceLog(LOG_WARNING, "Unsupported dithering bpps (%ibpp), only 16bpp or lower modes supported", (rBpp+gBpp+bBpp+aBpp)); } |
