mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
wxFile removed (rFile -> rfile_t)
This commit is contained in:
parent
2cafa84b75
commit
ab405901ee
43 changed files with 814 additions and 973 deletions
|
|
@ -153,11 +153,9 @@ namespace loader
|
|||
|
||||
m_stream->Seek(handler::get_stream_offset() + m_shdrs[m_ehdr.data_le.e_shstrndx].data_le.sh_offset + shdr.data_le.sh_name);
|
||||
std::string name;
|
||||
while (!m_stream->Eof())
|
||||
char c;
|
||||
while (m_stream->SRead(c) && c)
|
||||
{
|
||||
char c;
|
||||
m_stream->Read(&c, 1);
|
||||
if (c == 0) break;
|
||||
name.push_back(c);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue