mirror of
https://github.com/jonthysell/MacLO.git
synced 2025-04-14 07:37:09 +00:00
Fixed bug where opening the about menu breaks input/rendering
This commit is contained in:
parent
2d5d39874a
commit
2bf70cf136
@ -198,9 +198,12 @@ void MacLO_HandleAppleMenuChoice(const int16_t item)
|
||||
|
||||
void MacLO_ShowAboutDialog()
|
||||
{
|
||||
GrafPtr oldPort;
|
||||
DialogPtr dialog;
|
||||
int32_t itemHit;
|
||||
|
||||
GetPort(&oldPort);
|
||||
|
||||
dialog = GetNewDialog(AboutDialogResID, nil, MoveToFront);
|
||||
|
||||
SetPort(dialog);
|
||||
@ -212,6 +215,8 @@ void MacLO_ShowAboutDialog()
|
||||
ModalDialog(nil, &itemHit);
|
||||
|
||||
DisposDialog(dialog);
|
||||
|
||||
SetPort(oldPort);
|
||||
}
|
||||
|
||||
void MacLO_LaunchAppleMenuItem(const int16_t item)
|
||||
|
Loading…
x
Reference in New Issue
Block a user