mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Fix typo
This commit is contained in:
parent
da346427d3
commit
4fadc4e9a3
1 changed files with 2 additions and 2 deletions
|
@ -54,11 +54,11 @@ namespace swrenderer
|
||||||
|
|
||||||
unsigned int BeginIndex() const { return StartIndices.Last(); }
|
unsigned int BeginIndex() const { return StartIndices.Last(); }
|
||||||
unsigned int EndIndex() const { return Segments.Size(); }
|
unsigned int EndIndex() const { return Segments.Size(); }
|
||||||
DrawSegment *Segment(int index) const { return Segments[Segments.Size() - 1 - index]; }
|
DrawSegment *Segment(unsigned int index) const { return Segments[Segments.Size() - 1 - index]; }
|
||||||
|
|
||||||
unsigned int BeginInterestingIndex() const { return StartInterestingIndices.Last(); }
|
unsigned int BeginInterestingIndex() const { return StartInterestingIndices.Last(); }
|
||||||
unsigned int EndInterestingIndex() const { return InterestingSegments.Size(); }
|
unsigned int EndInterestingIndex() const { return InterestingSegments.Size(); }
|
||||||
DrawSegment *InterestingSegment(int index) const { return InterestingSegments[Segments.Size() - 1 - index]; }
|
DrawSegment *InterestingSegment(unsigned int index) const { return InterestingSegments[InterestingSegments.Size() - 1 - index]; }
|
||||||
|
|
||||||
void Clear();
|
void Clear();
|
||||||
void PushPortal();
|
void PushPortal();
|
||||||
|
|
Loading…
Reference in a new issue