mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Core: Stop including Rng so widely.
It's no longer on the MIPS struct.
This commit is contained in:
parent
cec9dbbdf7
commit
1a37b4b3fd
4 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
|
||||
#include <cstddef>
|
||||
|
||||
#include "Common/Data/Random/Rng.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Core/Opcode.h"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue