瀏覽代碼

replace tabs with spaces

bunnei 12 年之前
父節點
當前提交
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)();
 
 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);