mirror of https://github.com/nmlgc/ReC98.git
13 lines
310 B
C
13 lines
310 B
C
|
// Temporary workaround copy of TH02's version, until we can put it into the
|
||
|
// regular SHARED segment for TH04's OP.EXE as well.
|
||
|
#pragma codeseg SHARED_
|
||
|
|
||
|
#include "master.hpp"
|
||
|
#include "th02/hardware/frmdelay.h"
|
||
|
|
||
|
void pascal far frame_delay_2(int frames)
|
||
|
{
|
||
|
vsync_reset1();
|
||
|
while(vsync_Count1 < frames) {}
|
||
|
}
|