mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 17:29:55 +00:00
Fix missing break in switch statement
This commit is contained in:
parent
daaff1284e
commit
9a8ca81907
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,6 @@ namespace ESM
|
|||
mId = esm.getHString();
|
||||
hasName = true;
|
||||
break;
|
||||
break;
|
||||
case ESM::FourCC<'F','N','A','M'>::value:
|
||||
mName = esm.getHString();
|
||||
break;
|
||||
|
@ -69,6 +68,7 @@ namespace ESM
|
|||
case ESM::FourCC<'D','E','L','E'>::value:
|
||||
esm.skipHSub();
|
||||
isDeleted = true;
|
||||
break;
|
||||
default:
|
||||
esm.fail("Unknown subrecord");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue