- 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:
parent
a4076ffe38
commit
1d4ea9f162
6 changed files with 20 additions and 32 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue