fallout2-ce/src/delay.cc

9 lines
121 B
C++

#include "delay.h"
#include <SDL.h>
void delay_ms(int ms) {
if (ms <= 0){
return;
}
SDL_Delay(ms);
}