Browse Source

replace tabs with spaces

pull/15/merge
bunnei 12 years ago
parent
commit
7ea7585898
  1. 12
      src/core/hle/hle.h

12
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);

Loading…
Cancel
Save