From 4a75f44d475471f7a22a57380fde105218bb70c5 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 19 Nov 2020 21:02:39 +0100 Subject: [PATCH] Minor include cleanup in utlis.h --- rpcs3/Crypto/unedat.cpp | 3 +++ rpcs3/Crypto/utils.cpp | 4 +++- rpcs3/Crypto/utils.h | 4 ---- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/rpcs3/Crypto/unedat.cpp b/rpcs3/Crypto/unedat.cpp index be0a746fe3..d24b48fe65 100644 --- a/rpcs3/Crypto/unedat.cpp +++ b/rpcs3/Crypto/unedat.cpp @@ -1,6 +1,9 @@ #include "stdafx.h" #include "key_vault.h" #include "unedat.h" +#include "sha1.h" +#include "lz.h" +#include "ec.h" #include "Utilities/mutex.h" #include diff --git a/rpcs3/Crypto/utils.cpp b/rpcs3/Crypto/utils.cpp index a2565ab418..4758ece4dd 100644 --- a/rpcs3/Crypto/utils.cpp +++ b/rpcs3/Crypto/utils.cpp @@ -1,8 +1,10 @@ -// Copyright (C) 2014 Hykem +// Copyright (C) 2014 Hykem // Licensed under the terms of the GNU GPL, version 3 // http://www.gnu.org/licenses/gpl-3.0.txt #include "utils.h" +#include "aes.h" +#include "sha1.h" #include #include #include diff --git a/rpcs3/Crypto/utils.h b/rpcs3/Crypto/utils.h index be7af32b17..7c98293b7f 100644 --- a/rpcs3/Crypto/utils.h +++ b/rpcs3/Crypto/utils.h @@ -7,10 +7,6 @@ #include "util/types.hpp" #include -#include "aes.h" -#include "sha1.h" -#include "lz.h" -#include "ec.h" enum { CRYPTO_MAX_PATH = 4096 };