12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- From d816c534bc053e8de1f1151359c7384c6aabf532 Mon Sep 17 00:00:00 2001
- From: bfgeshka <bfgeshka@horsefucker.org>
- Date: Sat, 8 May 2021 03:13:01 +0900
- Subject: [PATCH] config changes
- ---
- src/config.h | 26 +++++++++++++-------------
- 1 file changed, 13 insertions(+), 13 deletions(-)
- diff --git a/src/config.h b/src/config.h
- index 6cec3446..90468926 100644
- --- a/src/config.h
- +++ b/src/config.h
- @@ -48,9 +48,9 @@
- // Wait for events passively (sleeping while no events) instead of polling them actively every frame
- //#define SUPPORT_EVENTS_WAITING 1
- // Allow automatic screen capture of current screen pressing F12, defined in KeyCallback()
- -#define SUPPORT_SCREEN_CAPTURE 1
- +//#define SUPPORT_SCREEN_CAPTURE 1
- // Allow automatic gif recording of current screen pressing CTRL+F12, defined in KeyCallback()
- -#define SUPPORT_GIF_RECORDING 1
- +//#define SUPPORT_GIF_RECORDING 1
- // Support CompressData() and DecompressData() functions
- #define SUPPORT_COMPRESSION_API 1
- // Support saving binary data automatically to a generated storage.data file. This file is managed internally.
- @@ -120,9 +120,9 @@
- //------------------------------------------------------------------------------------
- // Selecte desired fileformats to be supported for image data loading
- #define SUPPORT_FILEFORMAT_PNG 1
- -//#define SUPPORT_FILEFORMAT_BMP 1
- +#define SUPPORT_FILEFORMAT_BMP 1
- //#define SUPPORT_FILEFORMAT_TGA 1
- -//#define SUPPORT_FILEFORMAT_JPG 1
- +#define SUPPORT_FILEFORMAT_JPG 1
- #define SUPPORT_FILEFORMAT_GIF 1
- //#define SUPPORT_FILEFORMAT_PSD 1
- #define SUPPORT_FILEFORMAT_DDS 1
- @@ -167,10 +167,10 @@
- // Module: models - Configuration Flags
- //------------------------------------------------------------------------------------
- // Selected desired model fileformats to be supported for loading
- -#define SUPPORT_FILEFORMAT_OBJ 1
- -#define SUPPORT_FILEFORMAT_MTL 1
- -#define SUPPORT_FILEFORMAT_IQM 1
- -#define SUPPORT_FILEFORMAT_GLTF 1
- +//#define SUPPORT_FILEFORMAT_OBJ 1
- +//#define SUPPORT_FILEFORMAT_MTL 1
- +//#define SUPPORT_FILEFORMAT_IQM 1
- +//#define SUPPORT_FILEFORMAT_GLTF 1
- // Support procedural mesh generation functions, uses external par_shapes.h library
- // NOTE: Some generated meshes DO NOT include generated texture coordinates
- #define SUPPORT_MESH_GENERATION 1
- @@ -180,11 +180,11 @@
- // Module: audio - Configuration Flags
- //------------------------------------------------------------------------------------
- // Desired audio fileformats to be supported for loading
- -#define SUPPORT_FILEFORMAT_WAV 1
- -#define SUPPORT_FILEFORMAT_OGG 1
- -#define SUPPORT_FILEFORMAT_XM 1
- -#define SUPPORT_FILEFORMAT_MOD 1
- -#define SUPPORT_FILEFORMAT_MP3 1
- +//#define SUPPORT_FILEFORMAT_WAV 1
- +//#define SUPPORT_FILEFORMAT_OGG 1
- +//#define SUPPORT_FILEFORMAT_XM 1
- +//#define SUPPORT_FILEFORMAT_MOD 1
- +//#define SUPPORT_FILEFORMAT_MP3 1
- //#define SUPPORT_FILEFORMAT_FLAC 1
-
- // audio: Configuration values
- --
- 2.31.0
|