bunnei 12 лет назад
Родитель
Сommit
7ea7585898
1 измененных файлов с 6 добавлено и 6 удалено
  1. 6 6
      src/core/hle/hle.h

+ 6 - 6
src/core/hle/hle.h

@@ -19,15 +19,15 @@ namespace HLE {
 typedef void (*Func)();
 typedef void (*Func)();
 
 
 struct FunctionDef {
 struct FunctionDef {
-	u32                 id;
-	Func                func;
-	std::string         name;
+    u32                 id;
+    Func                func;
+    std::string         name;
 };
 };
 
 
 struct ModuleDef {
 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);
 void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);