summaryrefslogtreecommitdiffhomepage
path: root/src/utils.h
diff options
context:
space:
mode:
authorRay <[email protected]>2018-05-08 23:04:13 +0200
committerGitHub <[email protected]>2018-05-08 23:04:13 +0200
commit3a803ac95ea979727e77dea29daccabfd350e057 (patch)
tree1ee6e4da2f13fda4e35cfd79808d85074f155745 /src/utils.h
parent6884d3bc14986a8f1e38128b1bfbc93a48e46c75 (diff)
downloadraylib-3a803ac95ea979727e77dea29daccabfd350e057.tar.gz
raylib-3a803ac95ea979727e77dea29daccabfd350e057.zip
Removed unnecesary define
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h
index ed75eb68..dfdb0c2a 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -58,14 +58,12 @@ extern "C" { // Prevents name mangling of functions
//----------------------------------------------------------------------------------
// Module Functions Declaration
//----------------------------------------------------------------------------------
-#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI)
#if defined(SUPPORT_SAVE_BMP)
void SaveBMP(const char *fileName, unsigned char *imgData, int width, int height, int compSize);
#endif
#if defined(SUPPORT_SAVE_PNG)
void SavePNG(const char *fileName, unsigned char *imgData, int width, int height, int compSize);
#endif
-#endif
#if defined(PLATFORM_ANDROID)
void InitAssetManager(AAssetManager *manager); // Initialize asset manager from android app