From 86a4544aee900294e9fba4c2309f2728f8408a96 Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Thu, 21 Jun 2018 11:00:50 -0400 Subject: [PATCH] Fix import paths --- src/core/file_sys/vfs_offset.h | 2 +- src/core/file_sys/vfs_real.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/file_sys/vfs_offset.h b/src/core/file_sys/vfs_offset.h index a78e9a3293..1d30b41e06 100644 --- a/src/core/file_sys/vfs_offset.h +++ b/src/core/file_sys/vfs_offset.h @@ -3,7 +3,7 @@ // Refer to the license.txt file included. #pragma once -#include "vfs.h" +#include "core/file_sys/vfs.h" namespace FileSys { diff --git a/src/core/file_sys/vfs_real.h b/src/core/file_sys/vfs_real.h index ffb1225d76..bb81ed6845 100644 --- a/src/core/file_sys/vfs_real.h +++ b/src/core/file_sys/vfs_real.h @@ -4,7 +4,7 @@ #pragma once #include "common/file_util.h" -#include "core\file_sys\vfs.h" +#include "core/file_sys/vfs.h" namespace FileSys {