mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-02 23:49:40 +00:00
DREAMWEB: fixed hardcoded offsets
This commit is contained in:
parent
a5bd71858b
commit
bea919c9b4
@ -303,9 +303,9 @@ void gettime(Context &context) {
|
||||
context.ch = t.tm_hour;
|
||||
context.cl = t.tm_min;
|
||||
context.dh = t.tm_sec;
|
||||
context.ds.byte(5) = context.dh;
|
||||
context.ds.byte(6) = context.cl;
|
||||
context.ds.byte(7) = context.ch;
|
||||
context.data.byte(kSecondcount) = context.dh;
|
||||
context.data.byte(kMinutecount) = context.cl;
|
||||
context.data.byte(kHourcount) = context.ch;
|
||||
}
|
||||
|
||||
void allocatemem(Context &context) {
|
||||
|
Loading…
Reference in New Issue
Block a user