diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-11 18:09:23 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-11 18:09:23 -0400 |
commit | 7ea75858984e23ed22ad1dfa8ad0315aaeded538 (patch) | |
tree | a7171566b51a0ae33310bd41518cf3a24f450e97 /src | |
parent | f6c328cf37fe6e0250c20fcbf128f301b3d71d36 (diff) |
replace tabs with spaces
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/hle.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h index e3b8d483a9..9466be540a 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); |