mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
OpenGL renderer fixes
Fixed attributes loading Fixed scale-offset matrix Fixed attribute debug option
This commit is contained in:
parent
4a55ba3067
commit
a443682aaf
5 changed files with 60 additions and 27 deletions
|
@ -598,6 +598,11 @@ u64 fs::file::write(const void* buffer, u64 count) const
|
|||
#endif
|
||||
}
|
||||
|
||||
u64 fs::file::write(const std::string &string) const
|
||||
{
|
||||
return write(string.data(), string.size());
|
||||
}
|
||||
|
||||
u64 fs::file::seek(s64 offset, fsm seek_mode) const
|
||||
{
|
||||
g_tls_error = fse::ok;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue