Skip to content
Snippets Groups Projects
Commit 7ea75858 authored by bunnei's avatar bunnei
Browse files

replace tabs with spaces

parent f6c328cf
No related branches found
No related tags found
No related merge requests found
...@@ -19,15 +19,15 @@ namespace HLE { ...@@ -19,15 +19,15 @@ namespace HLE {
typedef void (*Func)(); typedef void (*Func)();
struct FunctionDef { struct FunctionDef {
u32 id; u32 id;
Func func; Func func;
std::string name; std::string name;
}; };
struct ModuleDef { struct ModuleDef {
std::string name; std::string name;
int num_funcs; int num_funcs;
const FunctionDef* func_table; 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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment