diff --git a/include/rd_mouse.cpp b/include/rd_mouse.cpp index 4432f0c..6232048 100644 --- a/include/rd_mouse.cpp +++ b/include/rd_mouse.cpp @@ -45,9 +45,6 @@ rd_mouse::mouse_variant rd_mouse::detect(){ // Compare the VID and PID of the current device against the IDs of all mice variant_loop< rd_mouse::mouse_variant >( [&](auto m){ - - // TODO! remove - std::cerr << m.get_name() << std::hex << "\t" << vid << ":" << pid << "\t" << (m.has_vid_pid(vid, pid) ? "true" : "false") << "\n"; if( m.has_vid_pid(vid, pid) ){ @@ -99,9 +96,6 @@ rd_mouse::mouse_variant rd_mouse::detect( std::string mouse_name ){ // Compare the VID and PID of the current device against the IDs of all mice variant_loop< rd_mouse::mouse_variant >( [&](auto m){ - // TODO! remove - std::cerr << m.get_name() << std::hex << "\t" << vid << ":" << pid << "\t" << (m.has_vid_pid(vid, pid) && mouse_name == m.get_name() ? "true" : "false") << "\n"; - if( m.has_vid_pid(vid, pid) && mouse_name == m.get_name() ){ // setting the vid/pid is required for mice woth multiple ids and is ignored by all other backends