diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-01-05 22:04:37 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | 18814d44b2e19f7a93ed48ef4799ced585d071e9 (patch) | |
| tree | 23270d97f5836e3eb7b07c905259065718504422 /Ryujinx.Common/Utilities | |
| parent | 383452f5cf2a81d50ef1a5e630fba45c6fb97647 (diff) | |
Address PR feedback
Add TODO comment for GL_EXT_polygon_offset_clamp
Diffstat (limited to 'Ryujinx.Common/Utilities')
| -rw-r--r-- | Ryujinx.Common/Utilities/EmbeddedResources.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Common/Utilities/EmbeddedResources.cs b/Ryujinx.Common/Utilities/EmbeddedResources.cs index 93ff70ea..caa17187 100644 --- a/Ryujinx.Common/Utilities/EmbeddedResources.cs +++ b/Ryujinx.Common/Utilities/EmbeddedResources.cs @@ -38,6 +38,7 @@ namespace Ryujinx.Common using (var mem = new MemoryStream()) { stream.CopyTo(mem); + return mem.ToArray(); } } @@ -53,6 +54,7 @@ namespace Ryujinx.Common using (var mem = new MemoryStream()) { await stream.CopyToAsync(mem); + return mem.ToArray(); } } |
