uppercase screenshot formats for optionsmenu
This commit is contained in:
parent
d8422cb1fb
commit
90f764c5bb
|
@ -434,7 +434,7 @@ public class Options {
|
||||||
},
|
},
|
||||||
SCREENSHOT_FORMAT ("Screenshot Format", "ScreenshotFormat", "Press F12 to take a screenshot.") {
|
SCREENSHOT_FORMAT ("Screenshot Format", "ScreenshotFormat", "Press F12 to take a screenshot.") {
|
||||||
@Override
|
@Override
|
||||||
public String getValueString() { return screenshotFormat[screenshotFormatIndex].toUpperCase(); }
|
public String getValueString() { return screenshotFormat[screenshotFormatIndex]; }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Object[] getListItems() {
|
public Object[] getListItems() {
|
||||||
|
@ -1243,7 +1243,7 @@ public class Options {
|
||||||
private static int targetFPSindex = 0;
|
private static int targetFPSindex = 0;
|
||||||
|
|
||||||
/** Screenshot file formats. */
|
/** Screenshot file formats. */
|
||||||
private static String[] screenshotFormat = { "png", "jpg", "bmp" };
|
private static String[] screenshotFormat = { "PNG", "JPG", "BMP" };
|
||||||
|
|
||||||
/** Index in screenshotFormat[] array. */
|
/** Index in screenshotFormat[] array. */
|
||||||
private static int screenshotFormatIndex = 0;
|
private static int screenshotFormatIndex = 0;
|
||||||
|
@ -1335,7 +1335,7 @@ public class Options {
|
||||||
* Returns the screenshot file format.
|
* Returns the screenshot file format.
|
||||||
* @return the file extension ("png", "jpg", "bmp")
|
* @return the file extension ("png", "jpg", "bmp")
|
||||||
*/
|
*/
|
||||||
public static String getScreenshotFormat() { return screenshotFormat[screenshotFormatIndex]; }
|
public static String getScreenshotFormat() { return screenshotFormat[screenshotFormatIndex].toLowerCase(); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the container size and makes the window borderless if the container
|
* Sets the container size and makes the window borderless if the container
|
||||||
|
|
Loading…
Reference in New Issue
Block a user