Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change speed descriptions to reflect what actually happens #7184

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Source/DiabloUI/multi/selgame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,19 +514,19 @@ void selgame_Speed_Focus(size_t value)
switch (vecSelGameDlgItems[value]->m_value) {
case 20:
CopyUtf8(selgame_Label, _("Normal"), sizeof(selgame_Label));
CopyUtf8(selgame_Description, _("Normal Speed\nThis is where a starting character should begin the quest to defeat Diablo."), sizeof(selgame_Description));
CopyUtf8(selgame_Description, _("Normal Speed\nGame runs at default speed."), sizeof(selgame_Description));
break;
case 30:
CopyUtf8(selgame_Label, _("Fast"), sizeof(selgame_Label));
CopyUtf8(selgame_Description, _("Fast Speed\nThe denizens of the Labyrinth have been hastened and will prove to be a greater challenge. This is recommended for experienced characters only."), sizeof(selgame_Description));
CopyUtf8(selgame_Description, _("Fast Speed\nGame runs 50% faster than default speed."), sizeof(selgame_Description));
break;
case 40:
CopyUtf8(selgame_Label, _("Faster"), sizeof(selgame_Label));
CopyUtf8(selgame_Description, _("Faster Speed\nMost monsters of the dungeon will seek you out quicker than ever before. Only an experienced champion should try their luck at this speed."), sizeof(selgame_Description));
CopyUtf8(selgame_Description, _("Faster Speed\nGame runs 100% faster than default speed."), sizeof(selgame_Description));
break;
case 50:
CopyUtf8(selgame_Label, _("Fastest"), sizeof(selgame_Label));
CopyUtf8(selgame_Description, _("Fastest Speed\nThe minions of the underworld will rush to attack without hesitation. Only a true speed demon should enter at this pace."), sizeof(selgame_Description));
CopyUtf8(selgame_Description, _("Fastest Speed\nGame runs 150% faster than default speed."), sizeof(selgame_Description));
break;
}
CopyUtf8(selgame_Description, WordWrapString(selgame_Description, DESCRIPTION_WIDTH), sizeof(selgame_Description));
Expand Down
Loading