0001-config-changes.patch 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. From d816c534bc053e8de1f1151359c7384c6aabf532 Mon Sep 17 00:00:00 2001
  2. From: bfgeshka <bfgeshka@horsefucker.org>
  3. Date: Sat, 8 May 2021 03:13:01 +0900
  4. Subject: [PATCH] config changes
  5. ---
  6. src/config.h | 26 +++++++++++++-------------
  7. 1 file changed, 13 insertions(+), 13 deletions(-)
  8. diff --git a/src/config.h b/src/config.h
  9. index 6cec3446..90468926 100644
  10. --- a/src/config.h
  11. +++ b/src/config.h
  12. @@ -48,9 +48,9 @@
  13. // Wait for events passively (sleeping while no events) instead of polling them actively every frame
  14. //#define SUPPORT_EVENTS_WAITING 1
  15. // Allow automatic screen capture of current screen pressing F12, defined in KeyCallback()
  16. -#define SUPPORT_SCREEN_CAPTURE 1
  17. +//#define SUPPORT_SCREEN_CAPTURE 1
  18. // Allow automatic gif recording of current screen pressing CTRL+F12, defined in KeyCallback()
  19. -#define SUPPORT_GIF_RECORDING 1
  20. +//#define SUPPORT_GIF_RECORDING 1
  21. // Support CompressData() and DecompressData() functions
  22. #define SUPPORT_COMPRESSION_API 1
  23. // Support saving binary data automatically to a generated storage.data file. This file is managed internally.
  24. @@ -120,9 +120,9 @@
  25. //------------------------------------------------------------------------------------
  26. // Selecte desired fileformats to be supported for image data loading
  27. #define SUPPORT_FILEFORMAT_PNG 1
  28. -//#define SUPPORT_FILEFORMAT_BMP 1
  29. +#define SUPPORT_FILEFORMAT_BMP 1
  30. //#define SUPPORT_FILEFORMAT_TGA 1
  31. -//#define SUPPORT_FILEFORMAT_JPG 1
  32. +#define SUPPORT_FILEFORMAT_JPG 1
  33. #define SUPPORT_FILEFORMAT_GIF 1
  34. //#define SUPPORT_FILEFORMAT_PSD 1
  35. #define SUPPORT_FILEFORMAT_DDS 1
  36. @@ -167,10 +167,10 @@
  37. // Module: models - Configuration Flags
  38. //------------------------------------------------------------------------------------
  39. // Selected desired model fileformats to be supported for loading
  40. -#define SUPPORT_FILEFORMAT_OBJ 1
  41. -#define SUPPORT_FILEFORMAT_MTL 1
  42. -#define SUPPORT_FILEFORMAT_IQM 1
  43. -#define SUPPORT_FILEFORMAT_GLTF 1
  44. +//#define SUPPORT_FILEFORMAT_OBJ 1
  45. +//#define SUPPORT_FILEFORMAT_MTL 1
  46. +//#define SUPPORT_FILEFORMAT_IQM 1
  47. +//#define SUPPORT_FILEFORMAT_GLTF 1
  48. // Support procedural mesh generation functions, uses external par_shapes.h library
  49. // NOTE: Some generated meshes DO NOT include generated texture coordinates
  50. #define SUPPORT_MESH_GENERATION 1
  51. @@ -180,11 +180,11 @@
  52. // Module: audio - Configuration Flags
  53. //------------------------------------------------------------------------------------
  54. // Desired audio fileformats to be supported for loading
  55. -#define SUPPORT_FILEFORMAT_WAV 1
  56. -#define SUPPORT_FILEFORMAT_OGG 1
  57. -#define SUPPORT_FILEFORMAT_XM 1
  58. -#define SUPPORT_FILEFORMAT_MOD 1
  59. -#define SUPPORT_FILEFORMAT_MP3 1
  60. +//#define SUPPORT_FILEFORMAT_WAV 1
  61. +//#define SUPPORT_FILEFORMAT_OGG 1
  62. +//#define SUPPORT_FILEFORMAT_XM 1
  63. +//#define SUPPORT_FILEFORMAT_MOD 1
  64. +//#define SUPPORT_FILEFORMAT_MP3 1
  65. //#define SUPPORT_FILEFORMAT_FLAC 1
  66. // audio: Configuration values
  67. --
  68. 2.31.0