summaryrefslogtreecommitdiffstats
path: root/src/video_core/regs.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-28 23:48:13 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-09 09:04:24 +0100
commitf241bb72f5b6b0b213053e000051bf3b7e6b4bb0 (patch)
tree8e5b02afe942842d4e86b420dfc4474224bbe114 /src/video_core/regs.h
parentVideoCore: Use union to index into Regs struct (diff)
downloadyuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.tar
yuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.tar.gz
yuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.tar.bz2
yuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.tar.lz
yuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.tar.xz
yuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.tar.zst
yuzu-f241bb72f5b6b0b213053e000051bf3b7e6b4bb0.zip
Diffstat (limited to 'src/video_core/regs.h')
-rw-r--r--src/video_core/regs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/regs.h b/src/video_core/regs.h
index e38ab4333..86826088b 100644
--- a/src/video_core/regs.h
+++ b/src/video_core/regs.h
@@ -64,8 +64,8 @@ struct Regs {
std::array<u32, NUM_REGS> reg_array;
};
- // Map register indices to names readable by humans
- static std::string GetCommandName(int index);
+ /// Map register indices to names readable by humans
+ static const char* GetRegisterName(u16 index);
};
static_assert(sizeof(Regs) == Regs::NUM_REGS * sizeof(u32), "Regs struct has wrong size");