camera: Removed some debug logging.

This commit is contained in:
Ryan C. Gordon 2023-12-22 10:12:48 -05:00
parent 67708f9110
commit 3dca8a03da
1 changed files with 0 additions and 2 deletions

View File

@ -236,7 +236,6 @@ static void EMSCRIPTENCAMERA_DetectDevices(void)
static SDL_bool EMSCRIPTENCAMERA_Init(SDL_CameraDriverImpl *impl)
{
SDL_Log("EMSCRIPTENCAMERA_Init, %s:%d", __FILE__, __LINE__);
MAIN_THREAD_EM_ASM({
if (typeof(Module['SDL3']) === 'undefined') {
Module['SDL3'] = {};
@ -244,7 +243,6 @@ SDL_Log("EMSCRIPTENCAMERA_Init, %s:%d", __FILE__, __LINE__);
Module['SDL3'].camera = {};
});
SDL_Log("EMSCRIPTENCAMERA_Init, %s:%d", __FILE__, __LINE__);
impl->DetectDevices = EMSCRIPTENCAMERA_DetectDevices;
impl->OpenDevice = EMSCRIPTENCAMERA_OpenDevice;
impl->CloseDevice = EMSCRIPTENCAMERA_CloseDevice;