Announcement

Collapse
No announcement yet.

Is it just me, who has problems with the options?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Is it just me, who has problems with the options?

    Is it just me, or do have others problems with displaying all these graphics options as well? Only the first tab is populated with content the second just displays Auflösung in English resolution. The other two don't display anything. And I have really to find a way to disable all these fancy graphics options in order to accelerate the game.

    And by the way does anybody know why the fourth tab is called Other even if all these strings should be in German, if I selected the option German when I was installing the game.

    -Martin
    Attached Files
    Civ2 military advisor: "No complaints, Sir!"

  • #2
    At least I found the problem for the Other entry; CvOptionsScreen.py:69-76

    Code:
    	def initText(self):
    		
    		self.szTabControlName = localText.getText("TXT_KEY_OPTIONS_TITLE", ())
    		
    		self.szGameOptionsTabName = localText.getText("TXT_KEY_OPTIONS_GAME", ())
    		self.szGraphicsOptionsTabName = localText.getText("TXT_KEY_OPTIONS_GRAPHICS", ())
    		self.szAudioOptionsTabName = localText.getText("TXT_KEY_OPTIONS_AUDIO", ())
    		self.szOtherOptionsTabName = "Other" #localText.getText("TXT_KEY_OPTIONS_SCREEN_OTHER", ())
    No wonder if you just outcomment the localized text retrievial stuff.

    So far it looks that TXT_KEY_OPTIONS_SCREEN_OTHER isn't part of any xml file.

    -Martin
    Civ2 military advisor: "No complaints, Sir!"

    Comment

    Working...
    X