DakkJaniels 2 weeks ago committed by GitHub
parent
commit
dac4d16c5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 8
      Source/DiabloUI/multi/selgame.cpp

8
Source/DiabloUI/multi/selgame.cpp

@ -540,19 +540,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));

Loading…
Cancel
Save