Changeset 154

Show
Ignore:
Timestamp:
02/16/07 20:31:13 (2 years ago)
Author:
jlee
Message:

Wrong operator

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/org/thestaticvoid/iriverter/MPlayerInfo.java

    r153 r154  
    2727 
    2828public class MPlayerInfo { 
    29         public static final String MPLAYER_BIN = System.getProperty("os.name").indexOf("Windows") > 0 ? "mplayer.exe" : "mplayer"; 
    30         public static final String MENCODER_BIN = System.getProperty("os.name").indexOf("Windows") > 0 ? "mencoder.exe" : "mencoder"; 
     29        public static final String MPLAYER_BIN = System.getProperty("os.name").indexOf("Windows") >= 0 ? "mplayer.exe" : "mplayer"; 
     30        public static final String MENCODER_BIN = System.getProperty("os.name").indexOf("Windows") >= 0 ? "mencoder.exe" : "mencoder"; 
    3131         
    3232        private Process proc;