~ubuntu-branches/ubuntu/trusty/manaplus/trusty

« back to all changes in this revision

Viewing changes to src/gui/setup_perfomance.cpp

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2013-10-07 10:26:14 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131007102614-tg2zjdz8vmtl6n7i
Tags: 1.3.9.29-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
128
128
 
129
129
    mTexturesList->fillFromArray(&texturesList[0], texturesListSize);
130
130
    // TRANSLATORS: settings option
131
 
    new SetupItemDropDown(_("Enable texture compression (fast OpenGL)"), "",
 
131
    new SetupItemDropDown(_("Enable texture compression (OpenGL)"), "",
132
132
        "compresstextures", this, "compresstexturesEvent", mTexturesList, 100);
133
133
 
134
134
    // TRANSLATORS: settings option
148
148
        "additinal memory)"), "", "uselonglivesprites", this,
149
149
        "uselonglivespritesEvent");
150
150
 
 
151
    // TRANSLATORS: settings option
 
152
    new SetupItemCheckBox(_("Cache all sounds (can use additinal memory)"),
 
153
        "", "uselonglivesounds", this,
 
154
        "uselonglivesoundsEvent");
 
155
 
151
156
    setDimension(gcn::Rectangle(0, 0, 550, 350));
152
157
}
153
158