From: ljsebald <ljs...@us...> - 2023-01-04 01:22:28
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 32fafbc497adaff4726a771bee76222de0a39987 (commit) via fb024c9695eda3be4acbd2606ea6accb5749d2c2 (commit) from 233498b60d5707f66e087b82a0e8301a0ee7f5e2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 32fafbc497adaff4726a771bee76222de0a39987 Merge: 233498b fb024c9 Author: Lawrence Sebald <ljs...@us...> Date: Tue Jan 3 20:21:20 2023 -0500 Merge pull request #84 from gyrovorbis/pvrmark Lowered pvrmark example starting polygon count. commit fb024c9695eda3be4acbd2606ea6accb5749d2c2 Author: falco <gyr...@gm...> Date: Tue Jan 3 10:36:57 2023 -0500 Fixed broken pvrmark example. Apparently the intialy polygon per second count was a little "too" obscene (as the comments say), and was causing nothing to be rendered to the screen and for all of the PPS calculations to become incorrect and even negative. ----------------------------------------------------------------------- Summary of changes: examples/dreamcast/pvr/pvrmark/pvrmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dreamcast/pvr/pvrmark/pvrmark.c b/examples/dreamcast/pvr/pvrmark/pvrmark.c index fadc587..df69200 100644 --- a/examples/dreamcast/pvr/pvrmark/pvrmark.c +++ b/examples/dreamcast/pvr/pvrmark/pvrmark.c @@ -173,7 +173,7 @@ int main(int argc, char **argv) { setup(); /* Start off with something obscene */ - switch_tests(2000000 / 60); + switch_tests(200000 / 60); start = time(NULL); for(;;) { hooks/post-receive -- A pseudo Operating System for the Dreamcast. |