From 71ab164b1e4b4b9625ccd0c94c94c198b4ed6193 Mon Sep 17 00:00:00 2001 From: elipzer Date: Tue, 4 Sep 2018 15:41:17 -0400 Subject: [PATCH] Fix main.cpp brackets --- OpenGLEngine/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenGLEngine/main.cpp b/OpenGLEngine/main.cpp index cd297fa..297e3e3 100644 --- a/OpenGLEngine/main.cpp +++ b/OpenGLEngine/main.cpp @@ -1,6 +1,7 @@ #include "MyApplication.h" -int WINAPI WinMain(HINSTANCE h_instance, HINSTANCE h_prev_instance, LPSTR cmd_line, int n_cmd_show) { +int WINAPI WinMain(HINSTANCE h_instance, HINSTANCE h_prev_instance, LPSTR cmd_line, int n_cmd_show) +{ MyApplication my_app("my_app", h_instance); return my_app.run(); } \ No newline at end of file