changed some naming/misc cleanups
This commit is contained in:
parent
2a7d7ce55d
commit
3bd041f5b0
4 changed files with 22 additions and 23 deletions
|
@ -11,10 +11,10 @@
|
|||
|
||||
namespace HLE {
|
||||
|
||||
static std::vector<HLEModule> g_module_db;
|
||||
static std::vector<ModuleDef> g_module_db;
|
||||
|
||||
void RegisterModule(const char *name, int num_functions, const HLEFunction *func_table) {
|
||||
HLEModule module = {name, num_functions, func_table};
|
||||
void RegisterModule(std::string name, int num_functions, const FunctionDef* func_table) {
|
||||
ModuleDef module = {name, num_functions, func_table};
|
||||
g_module_db.push_back(module);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue