-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecho_sys.h
37 lines (29 loc) · 1.09 KB
/
echo_sys.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// echo_sys.h
/*
This file is part of L-Echo.
L-Echo is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
L-Echo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with L-Echo. If not, see <http://www.gnu.org/licenses/>.
*/
#include "echo_platform.h"
/// Frames per second
#define FPS 30
/// Delay per frame (if it's running top speed, which it probably won't be)
#define WAIT 33.333f
#ifndef ECHO_NDS
#ifdef ECHO_WIN
#include <windows.h>
#define ECHO_SLEEP(arg) Sleep(arg)
#else //Assume it's Unix
#warning "Assuming system is Unix-based, using usleep"
#include <unistd.h>
#define ECHO_SLEEP(arg) usleep((arg) * 1000)
#endif
#endif