1 |
|
/* |
2 |
|
* timer_amiga.cpp - Time Manager emulation, AmigaOS specific stuff |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2001 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2002 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
51 |
|
|
52 |
|
uint32 TimerDateTime(void) |
53 |
|
{ |
54 |
< |
ULONG secs; |
55 |
< |
ULONG mics; |
54 |
> |
ULONG secs, mics; |
55 |
|
CurrentTime(&secs, &mics); |
56 |
< |
return secs + TIME_OFFSET; |
56 |
> |
return secs + 0x8b31ef80; |
57 |
|
} |
58 |
|
|
59 |
|
|