NewsItem: Reorder arguments to follow rendering order

This commit is contained in:
Tomas Babej
2021-09-27 23:42:03 -04:00
parent c574cbf948
commit 36e1f8c8ec
2 changed files with 6 additions and 6 deletions

View File

@@ -79,19 +79,19 @@ void wait_for_enter ()
NewsItem::NewsItem (
bool major,
const std::string& title,
const std::string& punchline,
const std::string& update,
const std::string& bg_title,
const std::string& background,
const std::string& punchline,
const std::string& update,
const std::string& reasoning,
const std::string& actions
) {
_major = major;
_title = title;
_punchline = punchline;
_update = update;
_bg_title = bg_title;
_background = background;
_punchline = punchline;
_update = update;
_reasoning = reasoning;
_actions = actions;
}