mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- SW: Use correct function name in GetOverlapSector2()
I_Error()
call.
This commit is contained in:
parent
40867c3ad7
commit
620f0fa7b8
1 changed files with 1 additions and 1 deletions
|
@ -3956,7 +3956,7 @@ int GetOverlapSector2(int x, int y, sectortype** over, sectortype** under)
|
|||
|
||||
if (!found)
|
||||
{
|
||||
I_Error("GetOverlapSector x = %d, y = %d, over %d, under %d", x, y, sectnum(*over), sectnum(*under));
|
||||
I_Error("GetOverlapSector2 x = %d, y = %d, over %d, under %d", x, y, sectnum(*over), sectnum(*under));
|
||||
}
|
||||
|
||||
PRODUCTION_ASSERT(found != 0);
|
||||
|
|
Loading…
Reference in a new issue