summaryrefslogtreecommitdiff
path: root/frontends/amiga
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/amiga')
-rw-r--r--frontends/amiga/gui.c2
-rw-r--r--frontends/amiga/schedule.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/frontends/amiga/gui.c b/frontends/amiga/gui.c
index 8ad21b3a5..8672a9366 100644
--- a/frontends/amiga/gui.c
+++ b/frontends/amiga/gui.c
@@ -5550,7 +5550,7 @@ int main(int argc, char** argv)
/* Check for AltiVec */
uint32 altivec = 0;
- GetCPUInfoTags(GCIT_VectorUnit, &altivec);
+ GetCPUInfoTags(GCIT_VectorUnit, &altivec, TAG_DONE);
if(altivec == VECTORTYPE_ALTIVEC) {
LOG("AltiVec detected");
diff --git a/frontends/amiga/schedule.c b/frontends/amiga/schedule.c
index 8abdca501..ff93e90da 100644
--- a/frontends/amiga/schedule.c
+++ b/frontends/amiga/schedule.c
@@ -375,5 +375,6 @@ void ami_schedule_handle(struct MsgPort *nsmsgport)
LOG("timereq err = %d (should be 0)", timermsg->timereq.Request.io_Error);
ami_scheduler_run(timermsg);
};
+ LOG("timermsg %p (0)", timermsg);
}