diff options
Diffstat (limited to 'src/Config.h')
-rw-r--r-- | src/Config.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Config.h b/src/Config.h index 9fd7488..9671f16 100644 --- a/src/Config.h +++ b/src/Config.h @@ -26,7 +26,7 @@ namespace Config { -typedef struct +struct ConfigEntry { char Name[32]; int Type; @@ -34,8 +34,7 @@ typedef struct int DefaultInt; const char* DefaultStr; int StrLength; // should be set to actual array length minus one - -} ConfigEntry; +}; FILE* GetConfigFile(const char* fileName, const char* permissions); bool HasConfigFile(const char* fileName); |