mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 04:36:52 +00:00
Fix GetStream implementation (#1588)
Fix wrong argument usage on GetStream. Doesn't change anything as it's not used but a nice catch from jD ^^.
This commit is contained in:
parent
f2b12c9749
commit
2ac0ce4557
1 changed files with 2 additions and 2 deletions
|
@ -112,9 +112,9 @@ namespace Ryujinx.Common
|
||||||
|
|
||||||
public static Stream GetStream(string filename)
|
public static Stream GetStream(string filename)
|
||||||
{
|
{
|
||||||
var (assembly, _) = ResolveManifestPath(filename);
|
var (assembly, path) = ResolveManifestPath(filename);
|
||||||
|
|
||||||
return GetStream(assembly, filename);
|
return GetStream(assembly, path);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Stream GetStream(Assembly assembly, string filename)
|
public static Stream GetStream(Assembly assembly, string filename)
|
||||||
|
|
Loading…
Reference in a new issue