diff options
author | bunnei <bunneidev@gmail.com> | 2014-12-13 04:12:12 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-12-13 04:12:12 +0100 |
commit | a6791e4fc73dda4853c8363d8ecf5094dbedd0ab (patch) | |
tree | 279039386bc3c63f2eda6530fa325334ddadb957 /src/video_core | |
parent | Merge pull request #261 from neobrain/boost (diff) | |
parent | APT_U: Added GetSharedFont service function. (diff) | |
download | yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.tar yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.tar.gz yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.tar.bz2 yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.tar.lz yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.tar.xz yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.tar.zst yuzu-a6791e4fc73dda4853c8363d8ecf5094dbedd0ab.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/pica.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 8bac178ca..4c3791ad9 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -116,7 +116,7 @@ struct Regs { u32 address; u32 GetPhysicalAddress() const { - return DecodeAddressRegister(address) - Memory::FCRAM_PADDR + Memory::HEAP_GSP_VADDR; + return DecodeAddressRegister(address) - Memory::FCRAM_PADDR + Memory::HEAP_LINEAR_VADDR; } // texture1 and texture2 store the texture format directly after the address @@ -312,7 +312,7 @@ struct Regs { inline u32 GetBaseAddress() const { // TODO: Ugly, should fix PhysicalToVirtualAddress instead - return DecodeAddressRegister(base_address) - Memory::FCRAM_PADDR + Memory::HEAP_GSP_VADDR; + return DecodeAddressRegister(base_address) - Memory::FCRAM_PADDR + Memory::HEAP_LINEAR_VADDR; } // Descriptor for internal vertex attributes |