Difference between revisions of "Modules/vgm/vgm player/Settings"

From MSX Game Library

< Modules‎ | vgm/vgm player

(Created page with "Library configuration (<tt>msxgl_config.h</tt>): <syntaxhighlight lang="c"> // VGM supported chip #define VGM_USE_PSG TRUE // Allow PSG data parsing and audio output #defi...")
 
 
Line 2: Line 2:
 
<syntaxhighlight lang="c">
 
<syntaxhighlight lang="c">
 
// VGM supported chip
 
// VGM supported chip
#define VGM_USE_PSG TRUE // Allow PSG data parsing and audio output
+
#define VGM_USE_PSG TRUE // Allow PSG data parsing and audio output
#define VGM_USE_MSXMUSIC TRUE // Allow MSX-Music data parsing and audio output
+
#define VGM_USE_MSXMUSIC TRUE // Allow MSX-Music data parsing and audio output
#define VGM_USE_MSXAUDIO TRUE // Allow MSX-Audio data parsing and audio output
+
#define VGM_USE_MSXAUDIO TRUE // Allow MSX-Audio data parsing and audio output
#define VGM_USE_SCC TRUE // Allow SCC data parsing and audio output
+
#define VGM_USE_SCC TRUE // Allow SCC data parsing and audio output
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 23:12, 15 January 2024

Library configuration (msxgl_config.h):

// VGM supported chip
#define VGM_USE_PSG				TRUE	// Allow PSG data parsing and audio output
#define VGM_USE_MSXMUSIC		TRUE	// Allow MSX-Music data parsing and audio output
#define VGM_USE_MSXAUDIO		TRUE	// Allow MSX-Audio data parsing and audio output
#define VGM_USE_SCC				TRUE	// Allow SCC data parsing and audio output