Skip to content

Commit

Permalink
Fix 32-bit compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
MadDeCoDeR committed Apr 3, 2024
1 parent 52492ee commit 7a61002
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomclassic/doom/p_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ P_TryMove

void P_AddSecnode(sector_t* s, mobj_t* thing)
{
for (int i = 0; i < ::g->headsecind; i++) {
for (size_t i = 0; i < ::g->headsecind; i++) {
if (::g->sector_list[i] != NULL) {
if (::g->sector_list[i]->m_sector == s) // Already have a node for this sector?
{
Expand Down

0 comments on commit 7a61002

Please sign in to comment.