aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-20 17:02:47 +0200
committerBad Diode <bd@badd10de.dev>2021-05-20 17:02:47 +0200
commit707b6dac805bcc4f2b5e297ff3ce4b82538bcff0 (patch)
tree23799c789848b6dd75ba7fb124bc903d9328776b /src/main.c
parentbe6617308ea796d2a41007a7bee1472884e189f7 (diff)
downloaduxngba-707b6dac805bcc4f2b5e297ff3ce4b82538bcff0.tar.gz
uxngba-707b6dac805bcc4f2b5e297ff3ce4b82538bcff0.zip
Add README and some example roms
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index c302480..e91a2f2 100644
--- a/src/main.c
+++ b/src/main.c
@@ -142,9 +142,9 @@ int main(void) {
142 evaluxn(&u, mempeek16(devscreen->dat, 0)); 142 evaluxn(&u, mempeek16(devscreen->dat, 0));
143 flipbuf(&ppu); 143 flipbuf(&ppu);
144 int eval_cycles = profile_stop(); 144 int eval_cycles = profile_stop();
145 txt_position(0,0); 145 // txt_position(0,0);
146 txt_printf("FRAME: %d \n", frame_counter); 146 // txt_printf("FRAME: %d \n", frame_counter);
147 txt_printf("EVAL: %d \n", eval_cycles); 147 // txt_printf("EVAL: %d \n", eval_cycles);
148 drawing_cycles = 0; 148 drawing_cycles = 0;
149 frame_counter++; 149 frame_counter++;
150 } 150 }