zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit ace6de35890243903cec04f9e8bf4c33f0c0b25f
parent a55b06306ad968f5311116709e36fb956d9c1062
Author: falkTX <falktx@gmail.com>
Date:   Tue, 26 May 2015 10:08:17 +0200

Replace !__APPLE__ check with a __linux__ one

Diffstat:
Msrc/UI/MasterUI.fl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/UI/MasterUI.fl b/src/UI/MasterUI.fl @@ -1495,7 +1495,7 @@ configui=new ConfigUI(osc); make_window(); fl_open_display(); -\#ifndef __APPLE__ +\#ifdef __linux__ Pixmap p = XCreateBitmapFromData(fl_display, DefaultRootWindow(fl_display), (char*)zynaddsubfx_bits, zynaddsubfx_width, zynaddsubfx_height); masterwindow->icon((char *)p);