aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2021-05-29 09:09:25 +0200
committerBad Diode <bd@badd10de.dev>2021-05-29 09:09:25 +0200
commitbe30d1dd9b4c17a0df0a862be95974421bea4c05 (patch)
tree1e146be66b1cbf37c3eea887b758b0535085e3e2 /src/common.h
parent450c5a1422b6a976485015085c02bb6b53aee124 (diff)
downloaduxngba-be30d1dd9b4c17a0df0a862be95974421bea4c05.tar.gz
uxngba-be30d1dd9b4c17a0df0a862be95974421bea4c05.zip
Change release optimization mode to -O3
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index 12114d7..0d6c89f 100644
--- a/src/common.h
+++ b/src/common.h
@@ -260,6 +260,11 @@ u32 profile_stop(void) {
260 return (TIMER_DATA_3 << 16) | TIMER_DATA_2; 260 return (TIMER_DATA_3 << 16) | TIMER_DATA_2;
261} 261}
262 262
263static inline
264u32 profile_measure(void) {
265 return (TIMER_DATA_3 << 16) | TIMER_DATA_2;
266}
267
263// 268//
264// Input handling. 269// Input handling.
265// 270//