0
0
mirror of https://notabug.org/litucks/torzu.git synced 2025-05-04 08:56:19 +00:00

replace tabs with spaces

This commit is contained in:
bunnei 2014-04-11 18:09:23 -04:00
parent f6c328cf37
commit 7ea7585898

View File

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