mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-13 09:19:32 -06:00
Fix 64bit registers that are not displayed correctly
This commit is contained in:
@ -323,7 +323,7 @@ void RegisterWidget::PopulateTable()
|
||||
}
|
||||
|
||||
void RegisterWidget::AddRegister(int row, int column, RegisterType type, std::string register_name,
|
||||
std::function<u32()> get_reg, std::function<void(u32)> set_reg)
|
||||
std::function<u64()> get_reg, std::function<void(u64)> set_reg)
|
||||
{
|
||||
auto* value = new RegisterColumn(type, get_reg, set_reg);
|
||||
|
||||
|
Reference in New Issue
Block a user