From 658c38b35057ad37f996866a0d3a10f0b10305ca Mon Sep 17 00:00:00 2001
From: Clownacy <Clownacy@users.noreply.github.com>
Date: Wed, 14 Oct 2020 18:41:12 +0100
Subject: [PATCH] Remove unnecessary function calls

These are called internally by libctru
---
 src/Backends/Platform/3DS.cpp | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/Backends/Platform/3DS.cpp b/src/Backends/Platform/3DS.cpp
index 70adab4e..7bf6a174 100644
--- a/src/Backends/Platform/3DS.cpp
+++ b/src/Backends/Platform/3DS.cpp
@@ -15,8 +15,6 @@ bool Backend_Init(void (*drag_and_drop_callback)(const char *path), void (*windo
 	(void)drag_and_drop_callback;
 	(void)window_focus_callback;
 
-	hidInit();
-
 	gfxInitDefault();
 	consoleInit(GFX_BOTTOM, NULL);
 
@@ -39,8 +37,6 @@ void Backend_Deinit(void)
 	romfsExit();
 
 	gfxExit();
-
-	hidExit();
 }
 
 void Backend_PostWindowCreation(void)