| 77 | } |
| 78 | |
| 79 | void CGameScreen::Init() |
| 80 | { |
| 81 | CBaseScreen::Init(); |
| 82 | |
| 83 | g_GameWindow.SetWindowResizable(true); |
| 84 | if (m_Maximized) |
| 85 | { |
| 86 | g_GameWindow.MaximizeWindow(); |
| 87 | } |
| 88 | |
| 89 | g_ScreenEffectManager.UseSunrise(); |
| 90 | SmoothScreenAction = 0; |
| 91 | //g_GumpManager.Add(new CGumpToolbar(300, 600)); // FIXME: this is not the place |
| 92 | } |
| 93 | |
| 94 | void CGameScreen::SetMaximized(bool maximized) |
| 95 | { |
no test coverage detected