summaryrefslogtreecommitdiff
path: root/Source/Core/Common/SysConf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/SysConf.cpp')
-rw-r--r--Source/Core/Common/SysConf.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Common/SysConf.cpp b/Source/Core/Common/SysConf.cpp
index 980318c06b..d4c58a3def 100644
--- a/Source/Core/Common/SysConf.cpp
+++ b/Source/Core/Common/SysConf.cpp
@@ -153,6 +153,10 @@ bool SysConf::LoadFromFileInternal(FILE* fh)
curEntry.dataLength = 4;
break;
+ case Type_LongLong:
+ curEntry.dataLength = 8;
+ break;
+
default:
PanicAlertT("Unknown entry type %i in SYSCONF (%s@%x)!", curEntry.type, curEntry.name,
curEntry.offset);