Fix for Logger not opening in Full Screen mode from command line option -logger.fullscreen reported here http://www.romraider.com/forum/viewtopic.php?f=14&t=6115&start=43

made case insensitive.

git-svn-id: https://svn2.assembla.com/svn/romraider/trunk@298 38686702-15cf-42e4-a595-3071df8bf5ea
This commit is contained in:
Dale Schultz 2010-10-25 21:00:13 +00:00
parent 66ca01d871
commit ec86f80b93
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class ECUExec {
private static boolean containsLoggerArg(String[] args) {
for (String arg : args) {
if (arg.equals(START_LOGGER_ARG) || arg.equals(START_LOGGER_FULLSCREEN_ARG)) {
if (arg.equalsIgnoreCase(START_LOGGER_ARG) || arg.equalsIgnoreCase(START_LOGGER_FULLSCREEN_ARG)) {
return true;
}
}