mirror of
https://github.com/isledecomp/SIEdit.git
synced 2024-11-27 01:25:45 -05:00
Merge pull request #9 from Techwizz-somboo/master
Initalize d to avoid a warning
This commit is contained in:
commit
8fae9087b0
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ void File::seek(File::pos_t p, SeekMode s)
|
|||
|
||||
SetFilePointer(m_Handle, low, &high, m);
|
||||
#else
|
||||
std::ios::seekdir d;
|
||||
std::ios::seekdir d = std::ios::beg;
|
||||
|
||||
switch (s) {
|
||||
case SeekStart:
|
||||
|
|
Loading…
Reference in a new issue