Browse Source

remove debug output

pull/1639/head
bsp2 6 years ago
parent
commit
b6719a2fb8
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      dep/lglw/lglw_linux.c
  2. +1
    -1
      src/plugin.cpp

+ 1
- 1
dep/lglw/lglw_linux.c View File

@@ -73,7 +73,7 @@
// //
// Very-very-verbose log entry // Very-very-verbose log entry
// //
#define Dlog_vvv if(0);else LOG_FXN
#define Dlog_vvv if(1);else LOG_FXN


// //
// Print to stdout // Print to stdout


+ 1
- 1
src/plugin.cpp View File

@@ -634,7 +634,7 @@ void vst2_begin_shared_plugin_redraw(void) {
// Called in UI thread // Called in UI thread
for(Plugin *p : global->plugin.gPlugins) { for(Plugin *p : global->plugin.gPlugins) {
if(NULL != p->begin_redraw_fxn) { if(NULL != p->begin_redraw_fxn) {
printf("xxx call begin_redraw_fxn()\n");
// printf("xxx call begin_redraw_fxn()\n");
p->begin_redraw_fxn(); p->begin_redraw_fxn();
} }
} }


Loading…
Cancel
Save