mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
Merge pull request #4272 from leoetlino/sysconf
SysConf: Add support for the LongLong type
This commit is contained in:
commit
ffcd69eaac
2 changed files with 5 additions and 1 deletions
|
@ -153,6 +153,10 @@ bool SysConf::LoadFromFileInternal(FILE* fh)
|
||||||
curEntry.dataLength = 4;
|
curEntry.dataLength = 4;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Type_LongLong:
|
||||||
|
curEntry.dataLength = 8;
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
PanicAlertT("Unknown entry type %i in SYSCONF (%s@%x)!", curEntry.type, curEntry.name,
|
PanicAlertT("Unknown entry type %i in SYSCONF (%s@%x)!", curEntry.type, curEntry.name,
|
||||||
curEntry.offset);
|
curEntry.offset);
|
||||||
|
|
|
@ -27,7 +27,7 @@ enum SysconfType
|
||||||
Type_Byte,
|
Type_Byte,
|
||||||
Type_Short,
|
Type_Short,
|
||||||
Type_Long,
|
Type_Long,
|
||||||
Type_Unknown,
|
Type_LongLong,
|
||||||
Type_Bool
|
Type_Bool
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue