1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Make uninitialized menu an empty string

This commit is contained in:
Brian Fiete 2025-01-10 07:04:10 -08:00
parent ad9550d807
commit be247d2c5b

View file

@ -204,7 +204,7 @@ WinBFWindow::WinBFWindow(BFWindow* parent, const StringImpl& title, int x, int y
if (mMenu != NULL)
{
WinBFMenu* placeholderMenu = (WinBFMenu*) AddMenuItem(mMenu, 0, ": Placeholder Menu Item :", NULL, NULL, false, -1, false);
WinBFMenu* placeholderMenu = (WinBFMenu*) AddMenuItem(mMenu, 0, "", NULL, NULL, false, -1, false);
placeholderMenu->mIsPlaceholder = true;
}