Skip to content

Commit

Permalink
[Jones3D] Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
smlu committed Dec 9, 2024
1 parent b6366bb commit c565ac1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jones3D/Main/JonesMain.c
Original file line number Diff line number Diff line change
Expand Up @@ -1029,8 +1029,8 @@ int J3DAPI JonesMain_GameWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPa

return JonesMain_bWndMsgProcessed;
#else
return 0
#endif
return 0;
#endif
}

void J3DAPI JonesMain_HandleWMGetMinMaxInfo(HWND hwnd, LPMINMAXINFO pMinMaxInfo)
Expand Down Expand Up @@ -2355,8 +2355,8 @@ int J3DAPI JonesMain_IntroWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lP

return JonesMain_bWndMsgProcessed;
#else
return 0
#endif
return 0;
#endif
}

void J3DAPI JonesMain_IntroHandleWMLButtonUp(HWND hwnd, uint16_t curPosX, uint16_t curPosY, WPARAM mvk)
Expand Down

0 comments on commit c565ac1

Please sign in to comment.