Skip to content

Commit a5e18b2

Browse files
committed
Fix mod-duo build
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 0622794 commit a5e18b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/monitor/monitor-client.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ static float ProcessMonitorLoopStereo(monitor_client_t *const mon, jack_nframes_
155155
const bool in1_connected = mon->connected & (1 << offset);
156156
const bool in2_connected = mon->connected & (1 << (offset + 1));
157157

158-
#ifdef _MOD_DEVICE_DUOX
158+
#if defined(_MOD_DEVICE_DUOX)
159159
sf_compressor_state_st* const compressor = offset == 2 ? &mon->compressor2 : &mon->compressor;
160-
#else
160+
#elif defined(MOD_IO_PROCESSING_ENABLED)
161161
sf_compressor_state_st* const compressor = &mon->compressor;
162162
#endif
163163

0 commit comments

Comments
 (0)