Added some cheap mouse relative check so superscope works (sorta)
Fixed a bug in zfilew.c (both versions) thanks to aaronl (and gcc) for noticing
This commit is contained in:
@@ -343,7 +343,7 @@ DWORD GetDate()
|
||||
newtime = localtime( &long_time );
|
||||
value = ((newtime->tm_mday) % 10)+((newtime->tm_mday)/10)*16
|
||||
+(((newtime->tm_mon)+1) << 8)
|
||||
+((((newtime->tm_year) % 10)+((newtime->tm_year)/10)*16) << 16);
|
||||
+((((newtime->tm_year) % 10)+((newtime->tm_year)/10)*16) << 16)
|
||||
+((newtime->tm_wday) << 28);
|
||||
|
||||
return(value);
|
||||
|
||||
Reference in New Issue
Block a user