File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
use crate :: { util, score, labels, playfield} ;
2
2
3
3
pub fn count_cycles ( ) {
4
- test_hz_cycles ( ) ;
5
- test_max_score_cycles ( ) ;
6
- test_mode_score_cycles ( ) ;
4
+ count_hz_cycles ( ) ;
5
+ count_max_score_cycles ( ) ;
6
+ count_mode_score_cycles ( ) ;
7
7
}
8
8
9
- fn test_hz_cycles ( ) {
9
+ fn count_hz_cycles ( ) {
10
10
// check max hz calculation amount
11
11
let mut emu = util:: emulator ( None ) ;
12
12
@@ -49,7 +49,7 @@ fn test_hz_cycles() {
49
49
println ! ( "hz display most cycles to vblank: {}" , highest) ;
50
50
}
51
51
52
- fn test_max_score_cycles ( ) {
52
+ fn count_max_score_cycles ( ) {
53
53
// check max scoring cycle amount
54
54
let mut emu = util:: emulator ( None ) ;
55
55
@@ -80,7 +80,7 @@ fn test_max_score_cycles() {
80
80
println ! ( "scoring routine most cycles: {}" , highest) ;
81
81
}
82
82
83
- fn test_mode_score_cycles ( ) {
83
+ fn count_mode_score_cycles ( ) {
84
84
// check clock cycles frames in each mode
85
85
let mut emu = util:: emulator ( None ) ;
86
86
You can’t perform that action at this time.
0 commit comments