Add missing break in switch statement in BlobIOSystem.h. Fixes #438.

This probably didn't affect anyone for real since no on uses relative seeks.
pull/502/head
Alexander Gessler 2015-03-16 23:26:41 +01:00 committed by Alexander Gessler
parent adc44d1e83
commit b304e7b45c
1 changed files with 2 additions and 0 deletions

View File

@ -120,9 +120,11 @@ public:
{
case aiOrigin_CUR:
cursor += pOffset;
break;
case aiOrigin_END:
cursor = file_size - pOffset;
break;
case aiOrigin_SET:
cursor = pOffset;