summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-11 18:09:23 -0400
committerGravatar bunnei2014-04-11 18:09:23 -0400
commit7ea75858984e23ed22ad1dfa8ad0315aaeded538 (patch)
treea7171566b51a0ae33310bd41518cf3a24f450e97 /src
parentmoved hle.cpp into hle folder (due to mistake earlier) (diff)
downloadyuzu-7ea75858984e23ed22ad1dfa8ad0315aaeded538.tar.gz
yuzu-7ea75858984e23ed22ad1dfa8ad0315aaeded538.tar.xz
yuzu-7ea75858984e23ed22ad1dfa8ad0315aaeded538.zip
replace tabs with spaces
Diffstat (limited to 'src')
-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 e3b8d483a..9466be540 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -19,15 +19,15 @@ namespace HLE {
19typedef void (*Func)(); 19typedef void (*Func)();
20 20
21struct FunctionDef { 21struct FunctionDef {
22 u32 id; 22 u32 id;
23 Func func; 23 Func func;
24 std::string name; 24 std::string name;
25}; 25};
26 26
27struct ModuleDef { 27struct ModuleDef {
28 std::string name; 28 std::string name;
29 int num_funcs; 29 int num_funcs;
30 const FunctionDef* func_table; 30 const FunctionDef* func_table;
31}; 31};
32 32
33void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); 33void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);