Core: Stop including Rng so widely.

It's no longer on the MIPS struct.
This commit is contained in:
Unknown W. Brackets 2023-09-07 17:20:06 -07:00
parent cec9dbbdf7
commit 1a37b4b3fd
4 changed files with 6 additions and 4 deletions

View file

@ -15,13 +15,14 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "Common/Crypto/md5.h"
#include "Common/Crypto/sha1.h"
#include "Common/Data/Random/Rng.h"
#include "Core/HLE/HLE.h"
#include "Core/HLE/FunctionWrappers.h"
#include "Core/HLE/sceMd5.h"
#include "Core/MemMap.h"
#include "Core/Reporting.h"
#include "Common/Crypto/md5.h"
#include "Common/Crypto/sha1.h"
#ifdef USE_CRT_DBG
#undef new

View file

@ -15,6 +15,7 @@
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#include "Common/Data/Random/Rng.h"
#include "Core/HLE/HLE.h"
#include "Core/HLE/FunctionWrappers.h"
#include "Core/HLE/sceMt19937.h"

View file

@ -1,5 +1,6 @@
#pragma once
#include <cstdint>
#include <vector>
#include <utility>
@ -16,7 +17,7 @@
// even be directly JIT-ed, but the gains will probably be tiny over our older direct
// MIPS->target JITs.
enum class IROp : u8 {
enum class IROp : uint8_t {
Nop,
SetConst,

View file

@ -21,7 +21,6 @@
#include <cstddef>
#include "Common/Data/Random/Rng.h"
#include "Common/CommonTypes.h"
#include "Core/Opcode.h"