File tree Expand file tree Collapse file tree 2 files changed +583
-7
lines changed Expand file tree Collapse file tree 2 files changed +583
-7
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,9 @@ class BW_MidiSequencer
322
322
// ! EA-MUS format
323
323
Format_RSXX,
324
324
// ! AIL's XMIDI format (act same as MIDI, but with exceptions)
325
- Format_XMIDI
325
+ Format_XMIDI,
326
+ // ! KLM format
327
+ Format_KLM
326
328
};
327
329
328
330
/* *
@@ -802,13 +804,21 @@ class BW_MidiSequencer
802
804
void setTempo (double tempo);
803
805
804
806
private:
807
+ #ifdef BWMIDI_ENABLE_OPL_MUSIC_SUPPORT
805
808
/* *
806
809
* @brief Load file as Id-software-Music-File (Wolfenstein)
807
810
* @param fr Context with opened file
808
811
* @return true on successful load
809
812
*/
810
813
bool parseIMF (FileAndMemReader &fr);
811
814
815
+ /* *
816
+ * @brief Load file as Wacky Wheels KLM file
817
+ * @param fr Context with opened file
818
+ * @return true on successful load
819
+ */
820
+ bool parseKLM (FileAndMemReader &fr);
821
+
812
822
/* *
813
823
* @brief Load file as EA MUS
814
824
* @param fr Context with opened file
@@ -822,6 +832,7 @@ class BW_MidiSequencer
822
832
* @return true on successful load
823
833
*/
824
834
bool parseCMF (FileAndMemReader &fr);
835
+ #endif
825
836
826
837
/* *
827
838
* @brief Load file as GMD/MUS files (ScummVM)
You can’t perform that action at this time.
0 commit comments