mirror of https://github.com/rusefi/RomRaider.git
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:
parent
66ca01d871
commit
ec86f80b93
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue