mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 19:28:43 +12:00
rfile_t renamed
This commit is contained in:
parent
b449545ae0
commit
74b3580b69
36 changed files with 287 additions and 293 deletions
|
@ -1,7 +1,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <sstream>
|
||||
#include "Utilities/rFile.h"
|
||||
#include "Utilities/File.h"
|
||||
#include "Utilities/Log.h"
|
||||
#include "Emu/Memory/Memory.h"
|
||||
#include "Emu/RSX/GL/GLVertexProgram.h"
|
||||
|
@ -182,9 +181,8 @@ public:
|
|||
, m_arb_shader("")
|
||||
, m_dst_reg_name("")
|
||||
{
|
||||
rfile_t f(path);
|
||||
if (!f)
|
||||
return;
|
||||
fs::file f(path);
|
||||
if (!f) return;
|
||||
|
||||
m_buffer_size = f.size();
|
||||
m_buffer = new u8[m_buffer_size];
|
||||
|
@ -314,10 +312,8 @@ public:
|
|||
{
|
||||
u32 ptr;
|
||||
{
|
||||
rfile_t f(m_path);
|
||||
|
||||
if (!f)
|
||||
return;
|
||||
fs::file f(m_path);
|
||||
if (!f) return;
|
||||
|
||||
size_t size = f.size();
|
||||
vm::ps3::init();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue