smasherprog / screen_capture_lite

cross platform screen/window capturing library
MIT License
619 stars 156 forks source link

Add DEBUG only log #28

Closed namkazt closed 6 years ago

namkazt commented 6 years ago

in ThreadRunner.cpp these logs should be debug only.

#ifdef _DEBUG
            std::cout << "Starting to Capture on Monitor " << Name(monitor) << std::endl;
            std::cout << "Trying DirectX Desktop Duplication " << std::endl;
#endif

#ifdef _DEBUG
                std::cout << "DirectX Desktop Duplication not supprted, falling back to GDI Capturing . . ." << std::endl;
#endif
smasherprog commented 6 years ago

Ill fix these comments tomorrow

namkazt commented 6 years ago

thank you. was use your lib on my 3DS homebrew. working great. https://gbatemp.net/threads/wip-nkstreamer-remote-desktop-streaming-to-3ds.478230/

smasherprog commented 6 years ago

Glad to hear!

smasherprog commented 6 years ago

Updated master to only show these statements if in debug mode