
Originally Posted by
88fiveoh
i was looking at the jar file's code and on ClockScreen.class i saw this
public void showTime(Graphics g) {
date = System.currentTimeMillis();
calendar = Calendar.getInstance();
int hour = calendar.get(11);
int minute = calendar.get(12);
minute += 30;
if(minute >= 60) {
hour++;
if you change "minute += 30" to "minute += 0", would it fix the 30 minute offset time? because this is a fantastic app and it would be perfect if the time was correct. im no java expert, but i was just wondering if this is the problem.
I'm probably wrong, but i just wanna know if thats what it is