diff options
Diffstat (limited to 'src/loop')
| -rw-r--r-- | src/loop/src/run.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/loop/src/run.c b/src/loop/src/run.c index 6c23365..3ce97b7 100644 --- a/src/loop/src/run.c +++ b/src/loop/src/run.c @@ -31,8 +31,6 @@ #include <drv/ps1/bios.h> int loop_run(void) { - static unsigned iterations; - if (fs_update() || aio_poll(loop_aio_head, 0) < 0 || init_run() @@ -41,6 +39,9 @@ int loop_run(void) || gfx_update()) return -1; +#if 0 + static unsigned iterations; + iterations++; static struct timespec ts; @@ -59,6 +60,6 @@ int loop_run(void) ts = now; iterations = 0; } - +#endif return 0; } |
