summaryrefslogtreecommitdiff
path: root/src/core/hw/hw.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-12 23:32:04 -0400
committerGravatar bunnei2014-04-12 23:32:04 -0400
commitf2f63a0f0583d672342d300f3c8b099f56a13c7d (patch)
treeb9b38984692bece54c035832ca88021d7ae77b77 /src/core/hw/hw.cpp
parentadded OS memory read/write for thread command buffer (diff)
downloadyuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.gz
yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.tar.xz
yuzu-f2f63a0f0583d672342d300f3c8b099f56a13c7d.zip
fixed hw write declarations to not be const
Diffstat (limited to 'src/core/hw/hw.cpp')
-rw-r--r--src/core/hw/hw.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hw/hw.cpp b/src/core/hw/hw.cpp
index 7191d7c60..59c348ca9 100644
--- a/src/core/hw/hw.cpp
+++ b/src/core/hw/hw.cpp
@@ -27,10 +27,10 @@ template void Read<u32>(u32 &var, const u32 addr);
27template void Read<u16>(u16 &var, const u32 addr); 27template void Read<u16>(u16 &var, const u32 addr);
28template void Read<u8>(u8 &var, const u32 addr); 28template void Read<u8>(u8 &var, const u32 addr);
29 29
30template void Write<const u64>(u32 addr, const u64 data); 30template void Write<u64>(u32 addr, const u64 data);
31template void Write<const u32>(u32 addr, const u32 data); 31template void Write<u32>(u32 addr, const u32 data);
32template void Write<const u16>(u32 addr, const u16 data); 32template void Write<u16>(u32 addr, const u16 data);
33template void Write<const u8>(u32 addr, const u8 data); 33template void Write<u8>(u32 addr, const u8 data);
34 34
35/// Update hardware 35/// Update hardware
36void Update() { 36void Update() {