Quellcode durchsuchen

replace tabs with spaces

bunnei vor 12 Jahren
Ursprung
Commit
7ea7585898
1 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
  1. 6 6
      src/core/hle/hle.h

+ 6 - 6
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);