mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
DEVTOOLS: Fix warning in extract_mort
This commit is contained in:
@@ -104,10 +104,10 @@ public:
|
||||
return ftell(f);
|
||||
}
|
||||
uint32 size() {
|
||||
int pos = ftell(f);
|
||||
int position = ftell(f);
|
||||
fseek (f, 0, SEEK_END);
|
||||
int end = ftell (f);
|
||||
fseek (f, pos, SEEK_SET);
|
||||
fseek (f, position, SEEK_SET);
|
||||
|
||||
return end;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user