From e39dc2baf8c99ae58b04d789f8c8ed865bc4f154 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Wed, 24 Jan 2018 16:05:47 -0500 Subject: [PATCH] Fixed building when fsdev usage is enabled. --- nx/include/switch/runtime/devices/fs_dev.h | 2 ++ nx/source/runtime/init.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/nx/include/switch/runtime/devices/fs_dev.h b/nx/include/switch/runtime/devices/fs_dev.h index f4b8b8c7..7acd4e00 100644 --- a/nx/include/switch/runtime/devices/fs_dev.h +++ b/nx/include/switch/runtime/devices/fs_dev.h @@ -3,6 +3,8 @@ * @brief FS driver. */ #pragma once + +#include #include "../../services/fs.h" //NOTE: This is currently not usable. diff --git a/nx/source/runtime/init.c b/nx/source/runtime/init.c index e10dcded..0c5aca66 100644 --- a/nx/source/runtime/init.c +++ b/nx/source/runtime/init.c @@ -5,7 +5,7 @@ #include "services/fs.h" #include "services/hid.h" #include "services/applet.h" - +#include "runtime/devices/fs_dev.h" void __nx_exit(int rc);