Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MadDeCoDeR committed Oct 25, 2023
2 parents 85ac918 + f94af48 commit fd50d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomclassic/doom/doomlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ fixed_t GetViewY()

template<class T>
void CleanVector(std::vector<T*> myVector) {
for (int i = 0; i < myVector.size(); i++) {
for (size_t i = 0; i < myVector.size(); i++) {
if (myVector[i] != NULL) {
void* val = myVector[i];
myVector[i] = NULL;
Expand Down

0 comments on commit fd50d3c

Please sign in to comment.