mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
Improved OpenGL renderer.
- Improved Vertex Shader Decompiler. - Fixed CMD analyzer. - Improved sys_fs module. - Minor fixes.
This commit is contained in:
parent
dd48f827c3
commit
8259006bc3
10 changed files with 193 additions and 157 deletions
|
|
@ -56,6 +56,8 @@ enum FsDirentType
|
|||
CELL_FS_TYPE_SYMLINK = 3,
|
||||
};
|
||||
|
||||
#pragma pack(4)
|
||||
|
||||
struct CellFsStat
|
||||
{
|
||||
be_t<u32> st_mode;
|
||||
|
|
@ -79,4 +81,6 @@ struct CellFsDirent
|
|||
u8 d_type;
|
||||
u8 d_namlen;
|
||||
char d_name[CELL_MAX_FS_FILE_NAME_LENGTH + 1];
|
||||
};
|
||||
};
|
||||
|
||||
#pragma pack()
|
||||
Loading…
Add table
Add a link
Reference in a new issue