mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
Improved ThreadBase.
Improved Vertex Shader Decompiler.
This commit is contained in:
parent
d07b5f0dc8
commit
4b8d6b6919
23 changed files with 352 additions and 284 deletions
|
@ -54,7 +54,7 @@ bool vfsLocalFile::Open(const wxString& path, vfsOpenMode mode)
|
|||
bool vfsLocalFile::Create(const wxString& path)
|
||||
{
|
||||
ConLog.Warning("vfsLocalFile::Create('%s')", path.c_str());
|
||||
for(uint p=1;p<path.Length();p++)
|
||||
for(uint p=1; path[p] != '\0'; p++)
|
||||
{
|
||||
for(; path[p] != '\0'; p++)
|
||||
if(path[p] == '\\') break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue