diff options
author | notaz | 2012-05-01 01:13:15 +0300 |
---|---|---|
committer | notaz | 2012-05-27 20:57:02 +0300 |
commit | 2e6189bc568b4e95cf5b04cf84375b3e918675f1 (patch) | |
tree | e0165451408662a411332a1df3ddabf6e642f04c /plugins/gpulib | |
parent | dd4d5a35678c8ff7f9a7c0ac42be354671534f96 (diff) | |
download | pcsx_rearmed-2e6189bc568b4e95cf5b04cf84375b3e918675f1.tar.gz pcsx_rearmed-2e6189bc568b4e95cf5b04cf84375b3e918675f1.tar.bz2 pcsx_rearmed-2e6189bc568b4e95cf5b04cf84375b3e918675f1.zip |
frontend: minor tweaks
Diffstat (limited to 'plugins/gpulib')
-rw-r--r-- | plugins/gpulib/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gpulib/test.c b/plugins/gpulib/test.c index e523e20..80d0e9e 100644 --- a/plugins/gpulib/test.c +++ b/plugins/gpulib/test.c @@ -62,7 +62,7 @@ int main(int argc, char *argv[]) { unsigned int start_cycles; uint32_t *list; - int size; + int size, dummy; FILE *state_file; FILE *list_file; FILE *out_file; @@ -94,7 +94,7 @@ int main(int argc, char *argv[]) start_cycles = pcnt_get(); - do_cmd_list(list, size / 4); + do_cmd_list(list, size / 4, &dummy); renderer_flush_queues(); printf("%u\n", pcnt_get() - start_cycles); |