system.drv: Avoid using the CONTEXT86 type.
This commit is contained in:
parent
d86df45602
commit
fe0f0c0349
|
@ -63,7 +63,7 @@ static void CALLBACK SYSTEM_TimerTick( LPVOID arg, DWORD low, DWORD high )
|
||||||
if ((SYS_Timers[i].ticks -= SYS_TIMER_RATE) <= 0)
|
if ((SYS_Timers[i].ticks -= SYS_TIMER_RATE) <= 0)
|
||||||
{
|
{
|
||||||
FARPROC16 proc = SYS_Timers[i].callback16;
|
FARPROC16 proc = SYS_Timers[i].callback16;
|
||||||
CONTEXT86 context;
|
CONTEXT context;
|
||||||
|
|
||||||
SYS_Timers[i].ticks += SYS_Timers[i].rate;
|
SYS_Timers[i].ticks += SYS_Timers[i].rate;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue