mirror of https://github.com/nmlgc/ReC98.git
12 lines
205 B
C++
12 lines
205 B
C++
![]() |
#include "platform.h"
|
||
|
#include "master.hpp"
|
||
|
#include "th04/main/slowdown.hpp"
|
||
|
|
||
|
void near slowdown_frame_delay(void)
|
||
|
{
|
||
|
while(vsync_Count1 < slowdown_factor) {
|
||
|
}
|
||
|
vsync_Count1 = 0;
|
||
|
slowdown_factor = 1;
|
||
|
}
|