mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
- Fix type conversion warning in file_wad.cpp.
SVN r3992 (trunk)
This commit is contained in:
parent
2022d64ee2
commit
3eb9953930
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ public:
|
|||
while(AvailOut && Stream.State != STREAM_FINAL);
|
||||
|
||||
assert(AvailOut == 0);
|
||||
return Out - (BYTE*)buffer;
|
||||
return (long)(Out - (BYTE*)buffer);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue