aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/hle.h')
-rw-r--r--src/core/hle/hle.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index e3b8d483..9466be54 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -19,15 +19,15 @@ namespace HLE {
typedef void (*Func)();
struct FunctionDef {
- u32 id;
- Func func;
- std::string name;
+ u32 id;
+ Func func;
+ std::string name;
};
struct ModuleDef {
- std::string name;
- int num_funcs;
- const FunctionDef* func_table;
+ std::string name;
+ int num_funcs;
+ const FunctionDef* func_table;
};
void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);