@@ -37,7 +37,7 @@ LRESULT CALLBACK WindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
3737 return DefWindowProc (hwnd, msg, wParam, lParam);
3838}
3939
40- int RunWindowsApp ( ) {
40+ int RunWindowsApp ( ) {
4141 g_hInstance = GetModuleHandle (NULL );
4242
4343 // Initialize keybinds & settings
@@ -47,7 +47,7 @@ int RunWindowsApp() {
4747 wc.lpfnWndProc = WindowProc;
4848 wc.hInstance = g_hInstance;
4949 wc.lpszClassName = WINDOW_CLASS;
50- RegisterClass (&wc);
50+ RegisterClass (& wc);
5151
5252 HWND hwnd = CreateWindowEx (0 , WINDOW_CLASS, " Split Loaf" , 0 , 0 , 0 , 0 , 0 , NULL , NULL , g_hInstance, NULL );
5353
@@ -59,9 +59,9 @@ int RunWindowsApp() {
5959 DWORD result = MsgWaitForMultipleObjects (0 , NULL , FALSE , 1 , QS_ALLINPUT);
6060
6161 if (result == WAIT_OBJECT_0) {
62- while (PeekMessage (&msg, NULL , 0 , 0 , PM_REMOVE)) {
63- TranslateMessage (&msg);
64- DispatchMessage (&msg);
62+ while (PeekMessage (& msg, NULL , 0 , 0 , PM_REMOVE)) {
63+ TranslateMessage (& msg);
64+ DispatchMessage (& msg);
6565
6666 if (msg.message == WM_QUIT) {
6767 Platform::shutdown ();
0 commit comments