File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,6 @@ BYTE autovibxm2it[8] =
2828extern WORD XMPeriodTable[96 +8 ];
2929extern UINT XMLinearTable[768 ];
3030
31- static inline UINT ConvertVolParam (UINT value)
32- // --------------------------------------------
33- {
34- return (value > 9 ) ? 9 : value;
35- }
36-
3731
3832BOOL CSoundFile::ITInstrToMPT (const void *p, INSTRUMENTHEADER *penv, UINT trkvers)
3933// --------------------------------------------------------------------------------
@@ -598,6 +592,12 @@ BOOL CSoundFile::ReadIT(const BYTE *lpStream, DWORD dwMemLength)
598592#pragma warning(disable:4100)
599593#endif
600594
595+ static inline UINT ConvertVolParam (UINT value)
596+ // --------------------------------------------
597+ {
598+ return (value > 9 ) ? 9 : value;
599+ }
600+
601601BOOL CSoundFile::SaveIT (LPCSTR lpszFileName, UINT nPacking)
602602// ---------------------------------------------------------
603603{
You can’t perform that action at this time.
0 commit comments