aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Homebrew.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-15 21:06:24 -0300
committerGitHub <noreply@github.com>2018-03-15 21:06:24 -0300
commit79a59397349b40758fc75cd2e19c67726a77e975 (patch)
tree4597fcdf8d8d6886df88c00650b7d924c7fc16fe /Ryujinx.Core/OsHle/Homebrew.cs
parent92f47d535e7c3b350c25499dec5e91d8be5544bc (diff)
Improvements to audout (#58)
* Some audout refactoring and improvements * More audio improvements * Change ReadAsciiString to use long for the Size, avoids some casting
Diffstat (limited to 'Ryujinx.Core/OsHle/Homebrew.cs')
-rw-r--r--Ryujinx.Core/OsHle/Homebrew.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Core/OsHle/Homebrew.cs b/Ryujinx.Core/OsHle/Homebrew.cs
index 2a717ca7..873dda02 100644
--- a/Ryujinx.Core/OsHle/Homebrew.cs
+++ b/Ryujinx.Core/OsHle/Homebrew.cs
@@ -51,7 +51,7 @@ namespace Ryujinx.Core.OsHle
long Value0 = Memory.ReadInt64(Position + 0x08);
long Value1 = Memory.ReadInt64(Position + 0x10);
- FileName = AMemoryHelper.ReadAsciiString(Memory, Value0, (int)(Value1 - Value0));
+ FileName = AMemoryHelper.ReadAsciiString(Memory, Value0, Value1 - Value0);
break;
}