summaryrefslogtreecommitdiff
path: root/apps/plugins/mikmod/mikmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mikmod/mikmod.c')
-rw-r--r--apps/plugins/mikmod/mikmod.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/plugins/mikmod/mikmod.c b/apps/plugins/mikmod/mikmod.c
index bb0e2e04ab..30f8c2f079 100644
--- a/apps/plugins/mikmod/mikmod.c
+++ b/apps/plugins/mikmod/mikmod.c
@@ -588,48 +588,48 @@ static int settings_menu(void)
588 switch(selection) 588 switch(selection)
589 { 589 {
590 case 0: 590 case 0:
591 rb->set_int(rb->str(LANG_PANNING_SEPARATION), "", 1, 591 rb->set_int("Panning Separation", "", 1,
592 &(settings.pansep), 592 &(settings.pansep),
593 NULL, 8, 0, 128, NULL ); 593 NULL, 8, 0, 128, NULL );
594 applysettings(); 594 applysettings();
595 break; 595 break;
596 596
597 case 1: 597 case 1:
598 rb->set_int(rb->str(LANG_REVERBERATION), "", 1, 598 rb->set_int("Reverberation", "", 1,
599 &(settings.reverb), 599 &(settings.reverb),
600 NULL, 1, 0, 15, NULL ); 600 NULL, 1, 0, 15, NULL );
601 applysettings(); 601 applysettings();
602 break; 602 break;
603 603
604 case 2: 604 case 2:
605 rb->set_bool(rb->str(LANG_INTERPOLATION), &(settings.interp)); 605 rb->set_bool("Interpolation", &(settings.interp));
606 applysettings(); 606 applysettings();
607 break; 607 break;
608 608
609 case 3: 609 case 3:
610 rb->set_bool(rb->str(LANG_SWAP_CHANNELS), &(settings.reverse)); 610 rb->set_bool("Reverse Channels", &(settings.reverse));
611 applysettings(); 611 applysettings();
612 break; 612 break;
613 613
614 case 4: 614 case 4:
615 rb->set_bool(rb->str(LANG_MIKMOD_SURROUND), &(settings.surround)); 615 rb->set_bool("Surround", &(settings.surround));
616 applysettings(); 616 applysettings();
617 break; 617 break;
618 618
619 case 5: 619 case 5:
620 rb->set_bool(rb->str(LANG_MIKMOD_HQMIXER), &(settings.hqmixer)); 620 rb->set_bool("HQ Mixer", &(settings.hqmixer));
621 applysettings(); 621 applysettings();
622 break; 622 break;
623 623
624 case 6: 624 case 6:
625 rb->set_option(rb->str(LANG_MIKMOD_SAMPLERATE), &(settings.sample_rate), RB_INT, sr_names, 625 rb->set_option("Sample Rate", &(settings.sample_rate), RB_INT, sr_names,
626 HW_NUM_FREQ, NULL); 626 HW_NUM_FREQ, NULL);
627 applysettings(); 627 applysettings();
628 break; 628 break;
629 629
630#ifdef HAVE_ADJUSTABLE_CPU_FREQ 630#ifdef HAVE_ADJUSTABLE_CPU_FREQ
631 case 7: 631 case 7:
632 rb->set_bool(rb->str(LANG_CPU_BOOST), &(settings.boost)); 632 rb->set_bool("CPU Boost", &(settings.boost));
633 applysettings(); 633 applysettings();
634 break; 634 break;
635#endif 635#endif