aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/engine.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 292f167..94581b3 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -5,10 +5,6 @@
#include <ncurses.h>
#endif
-#ifdef __WINDOWS__
-#include <windows.h>
-#endif
-
#include <cmath>
#include <cstdint>
#include <vector>
@@ -493,17 +489,9 @@ void main_SDL() {
SDL_Quit();
}
-#ifdef __WINDOWS__
-int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR pCmdLine, int nCmdShow) {
- (void) hInstance;
- (void) hPrevInstance;
- (void) pCmdLine;
- (void) nCmdShow;
-#else
int main(int argc, char *argv[]) {
(void) argc;
(void) argv;
-#endif
// main_term();
main_SDL();
return EXIT_SUCCESS;