Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cancel committed Jan 22, 2022
1 parent 7f7e768 commit 7c0f1a0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions uxn32.c
Original file line number Diff line number Diff line change
Expand Up @@ -1230,9 +1230,7 @@ static LRESULT CALLBACK WindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lp
case WM_COMMAND:
switch (LOWORD(wparam))
{
case IDM_OPENROM:
OpenROMDialog(d);
return 0;
case IDM_OPENROM: OpenROMDialog(d); return 0;
case IDM_EXIT: PostQuitMessage(0); return 0;
case IDM_CLONEWINDOW: CloneWindow(d); return 0;
case IDM_ABOUT:
Expand Down

0 comments on commit 7c0f1a0

Please sign in to comment.