aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/regs.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-28 14:48:13 -0800
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-02-09 00:04:24 -0800
commitf241bb72f5b6b0b213053e000051bf3b7e6b4bb0 (patch)
tree8e5b02afe942842d4e86b420dfc4474224bbe114 /src/video_core/regs.h
parent602f57da387da2bf702aa149124c14861b5d27d8 (diff)
Pica/Regs: Use binary search to look up reg names
This gets rid of the static unordered_map. Also changes the return type const char*, avoiding unnecessary allocations (the result was only used by calling .c_str() on it.)
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");