Change to the map refresh code?
Posted: Sun Oct 26, 2003 12:55 pm
Quick question:
I believe that the map refresh code that was CVS'd a few days ago was changed.
I assume we can change
to
to have the same refresh rate as the old code?
Also... What was done to radically change the size of eqlib.dll?
It changed from 640kb to 488kb with the latest CVS (after I removed some text that was causing compile errors)
I believe that the map refresh code that was CVS'd a few days ago was changed.
Code: Select all
static DWORD MapDelay = 0;
.
.
if (gMapFilters[MAPFILTER_Refresh]>0) {
if (++MapDelay>gMapFilters[MAPFILTER_Refresh]) MapDelay=0;
} else MapDelay=0;
Code: Select all
static DWORD MapDelay = 0;Code: Select all
static DWORD MapDelay = 3;Also... What was done to radically change the size of eqlib.dll?
It changed from 640kb to 488kb with the latest CVS (after I removed some text that was causing compile errors)