|
From: <sag...@us...> - 2011-03-23 20:57:28
|
Revision: 826
http://modplug.svn.sourceforge.net/modplug/?rev=826&view=rev
Author: saga-games
Date: 2011-03-23 20:57:22 +0000 (Wed, 23 Mar 2011)
Log Message:
-----------
[Imp] Pattern Editor: Status bar now indicates if highpass filter is enabled on a channel.
Modified Paths:
--------------
trunk/OpenMPT/mptrack/Draw_pat.cpp
Modified: trunk/OpenMPT/mptrack/Draw_pat.cpp
===================================================================
--- trunk/OpenMPT/mptrack/Draw_pat.cpp 2011-03-23 20:48:08 UTC (rev 825)
+++ trunk/OpenMPT/mptrack/Draw_pat.cpp 2011-03-23 20:57:22 UTC (rev 826)
@@ -1552,11 +1552,12 @@
if (!pSndFile) return;
//xtraInfo.Format("Chan: %d; macro: %X; cutoff: %X; reso: %X; pan: %X",
- xtraInfo.Format("Chn:%d; Vol:%X; Mac:%X; Cut:%X; Res:%X; Pan:%X",
+ xtraInfo.Format("Chn:%d; Vol:%X; Mac:%X; Cut:%X%s; Res:%X; Pan:%X",
nChn+1,
pSndFile->Chn[nChn].nGlobalVol,
pSndFile->Chn[nChn].nActiveMacro,
pSndFile->Chn[nChn].nCutOff,
+ (pSndFile->Chn[nChn].nFilterMode == FLTMODE_HIGHPASS) ? "-Hi" : "",
pSndFile->Chn[nChn].nResonance,
pSndFile->Chn[nChn].nPan);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|