mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Make GetBPRegInfo just take two strings as parameters
Gets rid of the size parameters.
This commit is contained in:
@ -4,6 +4,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "Common/BitField.h"
|
||||
#include "Common/Common.h"
|
||||
|
||||
@ -1081,4 +1083,4 @@ extern BPMemory bpmem;
|
||||
|
||||
void LoadBPReg(u32 value0);
|
||||
|
||||
void GetBPRegInfo(const u8* data, char* name, size_t name_size, char* desc, size_t desc_size);
|
||||
void GetBPRegInfo(const u8* data, std::string* name, std::string* desc);
|
||||
|
Reference in New Issue
Block a user