Browse Source

Fix compiler warning

pull/796/head
Anders Jenbo 6 years ago
parent
commit
86cd54a7ca
  1. 2
      SourceX/DiabloUI/credits.cpp

2
SourceX/DiabloUI/credits.cpp

@ -117,7 +117,7 @@ public:
ArtBackground.Unload();
UnloadTtfFont();
for (int x = 0; x < lines_.size(); x++) {
for (size_t x = 0; x < lines_.size(); x++) {
if (lines_[x].m_surface)
SDL_FreeSurface(lines_[x].m_surface);
}

Loading…
Cancel
Save