Skip to content

Commit

Permalink
Enable PNG, TTF, and OGG formats for raylib
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanlangston committed Dec 10, 2023
1 parent be8cbde commit e8b74f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Includes/raylib_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
// Module: rtextures - Configuration Flags
//------------------------------------------------------------------------------------
// Select the desired fileformats to be supported for image data loading
//#define SUPPORT_FILEFORMAT_PNG 1
#define SUPPORT_FILEFORMAT_PNG 1
//#define SUPPORT_FILEFORMAT_BMP 1
//#define SUPPORT_FILEFORMAT_TGA 1
//#define SUPPORT_FILEFORMAT_JPG 1
Expand Down Expand Up @@ -175,7 +175,7 @@
#define SUPPORT_DEFAULT_FONT 1
// Selected desired font fileformats to be supported for loading
//#define SUPPORT_FILEFORMAT_FNT 1
//#define SUPPORT_FILEFORMAT_TTF 1
#define SUPPORT_FILEFORMAT_TTF 1

// Support text management functions
// If not defined, still some functions are supported: TextLength(), TextFormat()
Expand Down Expand Up @@ -217,7 +217,7 @@
//------------------------------------------------------------------------------------
// Desired audio fileformats to be supported for loading
//#define SUPPORT_FILEFORMAT_WAV 1
//#define SUPPORT_FILEFORMAT_OGG 1
#define SUPPORT_FILEFORMAT_OGG 1
//#define SUPPORT_FILEFORMAT_MP3 1
//#define SUPPORT_FILEFORMAT_QOA 1
//#define SUPPORT_FILEFORMAT_FLAC 1
Expand Down

0 comments on commit e8b74f0

Please sign in to comment.