Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Aayush
purr-data
Commits
04b16dee
Commit
04b16dee
authored
Jul 30, 2016
by
Jonathan Wilkes
Browse files
remove debug messages introduced in the previous commit
parent
184923d7
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/nw/dialog_prefs.html
View file @
04b16dee
...
...
@@ -469,7 +469,6 @@ function cancel() {
}
function
change_api
(
elem
)
{
pdgui
.
post
(
"
elem is
"
+
elem
);
var
id
=
elem
.
getAttribute
(
"
id
"
),
value
=
elem
.
value
;
// need js object property, DOM Attribute won't work
if
(
id
===
"
audio_api
"
)
{
...
...
pd/src/s_midi.c
View file @
04b16dee
...
...
@@ -724,11 +724,9 @@ void glob_midi_properties(t_pd *dummy, t_floatarg flongform)
gfxstub_new2
(
&
glob_pdobject
,
(
void
*
)
glob_midi_properties
));
//sys_gui("global midi_indevlist; set midi_indevlist {none}\n");
fprintf
(
stderr
,
"ndevs is %d"
,
nindevs
);
gui_start_array
();
for
(
i
=
0
;
i
<
nindevs
;
i
++
)
{
fprintf
(
stderr
,
"dev is %s"
,
indevlist
+
i
*
DEVDESCSIZE
);
//sys_vgui("lappend midi_indevlist {%s}\n",
// indevlist + i * DEVDESCSIZE);
gui_s
(
indevlist
+
i
*
DEVDESCSIZE
);
...
...
@@ -843,8 +841,6 @@ void glob_midi_dialog(t_pd *dummy, t_symbol *s, int argc, t_atom *argv)
alsadevin
=
atom_getintarg
(
8
,
argc
,
argv
);
alsadevout
=
atom_getintarg
(
9
,
argc
,
argv
);
fprintf
(
stderr
,
"devin is %d"
,
alsadevin
);
fprintf
(
stderr
,
"devout is %d"
,
alsadevout
);
#ifdef USEAPI_ALSA
/* invent a story so that saving/recalling "settings" will
be able to restore the number of devices. ALSA MIDI handling
...
...
@@ -886,7 +882,6 @@ void sys_get_midi_devs(char *indevlist, int *nindevs,
{
midi_alsa_getdevs
(
indevlist
,
nindevs
,
outdevlist
,
noutdevs
,
maxndevs
,
devdescsize
);
fprintf
(
stderr
,
"nindevs areererer %d"
,
*
nindevs
);
}
else
#endif
/* ALSA */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment