SAGA2: Fix StaticWindow warnings
This commit is contained in:
parent
f8b24c5e58
commit
176c81b074
2 changed files with 9 additions and 9 deletions
|
@ -143,9 +143,9 @@ static const StaticRect scrollBtnRect = {
|
|||
|
||||
|
||||
StaticWindow autoMapDecorations[numAutoMapPanels] = {
|
||||
{*autoMapPanelRects[0], nullptr, autoMapTopPanelResID},
|
||||
{*autoMapPanelRects[1], nullptr, autoMapMidPanelResID},
|
||||
{*autoMapPanelRects[2], nullptr, autoMapBotPanelResID}
|
||||
{*(autoMapPanelRects[0]), NULL, autoMapTopPanelResID},
|
||||
{*(autoMapPanelRects[1]), NULL, autoMapMidPanelResID},
|
||||
{*(autoMapPanelRects[2]), NULL, autoMapBotPanelResID}
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -231,9 +231,9 @@ static const StaticRect *saveLoadTextRects[kNumSaveLoadTexts] = {
|
|||
// save/load dialog window decorations
|
||||
|
||||
static StaticWindow saveWindowDecorations[kNumSaveLoadPanels] = {
|
||||
{*saveLoadPanelRects[0], nullptr, SLTopPanelResID},
|
||||
{*saveLoadPanelRects[1], nullptr, SLMidPanelResID},
|
||||
{*saveLoadPanelRects[2], nullptr, SLBotPanelResID}
|
||||
{*(saveLoadPanelRects[0]), NULL, SLTopPanelResID},
|
||||
{*(saveLoadPanelRects[1]), NULL, SLMidPanelResID},
|
||||
{*(saveLoadPanelRects[2]), NULL, SLBotPanelResID}
|
||||
};
|
||||
|
||||
|
||||
|
@ -473,9 +473,9 @@ static const StaticRect *optionsTextRects[] = {
|
|||
// options dialog window decorations
|
||||
|
||||
static StaticWindow optionsDecorations[kNumOptionsPanels] = {
|
||||
{*optionsPanelRects[0], nullptr, optTopPanelResID},
|
||||
{*optionsPanelRects[1], nullptr, optMidPanelResID},
|
||||
{*optionsPanelRects[2], nullptr, optBotPanelResID}
|
||||
{*(optionsPanelRects[0]), NULL, optTopPanelResID},
|
||||
{*(optionsPanelRects[1]), NULL, optMidPanelResID},
|
||||
{*(optionsPanelRects[2]), NULL, optBotPanelResID}
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue