- removed the __asm nop breakpoints for debugging. They not only do not work on non-MSVC but also not on 64 bit.

This commit is contained in:
Christoph Oelckers 2014-05-08 09:48:39 +02:00
commit 1d4ea9f162
6 changed files with 20 additions and 32 deletions

View file

@ -96,11 +96,11 @@ static sector_t *currentsector;
static void AddLine (seg_t *seg)
{
#ifdef _MSC_VER
#ifdef _DEBUG
if (seg->linedef-lines==38)
__asm nop
#endif
if (seg->linedef - lines == 38)
{
int a = 0;
}
#endif
angle_t startAngle, endAngle;
@ -382,13 +382,11 @@ static void DoSubsector(subsector_t * sub)
//if (!clipper.CheckBox(sub->bbox)) return;
#ifdef _MSC_VER
#ifdef _DEBUG
if (sub->sector-sectors==931)
{
__asm nop
int a = 0;
}
#endif
#endif
sector=sub->sector;