From 7ea75858984e23ed22ad1dfa8ad0315aaeded538 Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 11 Apr 2014 18:09:23 -0400 Subject: [PATCH] replace tabs with spaces --- src/core/hle/hle.h | 12 ++++++------ 1 file 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);