fixed a copy&paste bug; rewrote the code in question to streamline it a bit

svn-id: r6587
This commit is contained in:
Max Horn 2003-02-05 19:21:23 +00:00
parent da26741452
commit 53fd53fe4b

View File

@ -107,37 +107,21 @@ void SimonState::focusVerb(uint hitarea_id)
{ {
uint x; uint x;
const char *txt; const char *txt;
const char * const *verb_prep_names;
hitarea_id -= 101; hitarea_id -= 101;
if (_language == 20) {
CHECK_BOUNDS(hitarea_id, hebrew_verb_prep_names);
} else if (_language == 5) {
CHECK_BOUNDS(hitarea_id, spanish_verb_prep_names);
} else if (_language == 3) {
CHECK_BOUNDS(hitarea_id, italian_verb_prep_names);
} else if (_language == 2) {
CHECK_BOUNDS(hitarea_id, french_verb_prep_names);
} else if (_language == 1) {
CHECK_BOUNDS(hitarea_id, german_verb_prep_names);
} else {
CHECK_BOUNDS(hitarea_id, english_verb_prep_names);
}
if (_show_preposition) { if (_show_preposition) {
if (_language == 20) { switch (_language) {
CHECK_BOUNDS(hitarea_id, hebrew_verb_prep_names); case 20: verb_prep_names = hebrew_verb_prep_names; break;
} else if (_language == 5) { case 5: verb_prep_names = spanish_verb_prep_names; break;
txt = spanish_verb_prep_names[hitarea_id]; case 3: verb_prep_names = italian_verb_prep_names; break;
} else if (_language == 3) { case 2: verb_prep_names = french_verb_prep_names; break;
txt = italian_verb_prep_names[hitarea_id]; case 1: verb_prep_names = german_verb_prep_names; break;
} else if (_language == 2) { default: verb_prep_names = english_verb_prep_names; break;
txt = french_verb_prep_names[hitarea_id];
} else if (_language == 1) {
txt = german_verb_prep_names[hitarea_id];
} else {
txt = english_verb_prep_names[hitarea_id];
} }
CHECK_BOUNDS(hitarea_id, verb_prep_names);
txt = english_verb_prep_names[hitarea_id];
} else { } else {
txt = verb_names[hitarea_id]; txt = verb_names[hitarea_id];
} }