| 233 | } |
| 234 | |
| 235 | void Window_Message::ShowGoldWindow() { |
| 236 | if (Game_Battle::IsBattleRunning()) { |
| 237 | return; |
| 238 | } |
| 239 | if (!gold_window->IsVisible()) { |
| 240 | gold_window->SetY(y == 0 ? Player::screen_height - Player::menu_offset_y - 32 : Player::menu_offset_y); |
| 241 | gold_window->SetOpenAnimation(message_animation_frames); |
| 242 | } else if (gold_window->IsClosing()) { |
| 243 | gold_window->SetOpenAnimation(0); |
| 244 | } |
| 245 | gold_window->Refresh(); |
| 246 | } |
| 247 | |
| 248 | void Window_Message::InsertNewPage() { |
| 249 | DebugLog("{}: MSG NEW PAGE"); |
no test coverage detected