diff --git a/src/camera/emscripten/SDL_camera_emscripten.c b/src/camera/emscripten/SDL_camera_emscripten.c index a04a8e454..5e74cb928 100644 --- a/src/camera/emscripten/SDL_camera_emscripten.c +++ b/src/camera/emscripten/SDL_camera_emscripten.c @@ -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;