mirror of
https://github.com/ctm/executor.git
synced 2024-12-22 13:30:41 +00:00
Fixed Time low-memory global on Mac OS X port.
This commit is contained in:
parent
8bd495f3db
commit
27727108b3
2
TODO
2
TODO
@ -1,3 +1,5 @@
|
||||
Get rid of old copy-protection stuff
|
||||
|
||||
package up the System Folder and whatnot so that people w/o the
|
||||
old executor-aux can run Executor
|
||||
|
||||
|
@ -1319,8 +1319,8 @@ P0 (PUBLIC pascal trap, LONGINT, TickCount)
|
||||
will get set eventually and that will
|
||||
cause trouble */
|
||||
new_time = (UNIXTIMETOMACTIME (ROMlib_start_time.tv_sec)
|
||||
+ ((ROMlib_start_time.tv_usec / (1000000.0 / 60) + ticks) / 60));
|
||||
|
||||
+ (long) ((ROMlib_start_time.tv_usec / (1000000.0 / 60) + ticks) / 60));
|
||||
|
||||
Time = CL (new_time);
|
||||
return ticks;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user