From 5d6d058965e7723edbd0453337b912a58af1fc38 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sat, 25 Apr 2015 01:18:12 +0300 Subject: [PATCH] Fix --- rpcs3/Crypto/unpkg.h | 2 +- rpcs3/Loader/PKG.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Crypto/unpkg.h b/rpcs3/Crypto/unpkg.h index 62a18a4bef..0f895a0fe6 100644 --- a/rpcs3/Crypto/unpkg.h +++ b/rpcs3/Crypto/unpkg.h @@ -56,6 +56,6 @@ struct PKGEntry be_t pad; // Padding (zeros) }; -struct fs::file; +namespace fs { struct file; } int Unpack(const fs::file& dec_pkg_f, std::string src, std::string dst); diff --git a/rpcs3/Loader/PKG.h b/rpcs3/Loader/PKG.h index 17e55e2347..1a51c71199 100644 --- a/rpcs3/Loader/PKG.h +++ b/rpcs3/Loader/PKG.h @@ -1,6 +1,6 @@ #pragma once -struct fs::file; +namespace fs { struct file; } struct PKGLoader {