summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-03-31 21:13:53 +0000
committerDarkvater <Darkvater@openttd.org>2006-03-31 21:13:53 +0000
commitb2cf79423dd432c957a581b387a642f8a574a7ab (patch)
tree15c53971bf09d815e30d82068d12f666f64d6013
parent45a0557b37cdf8e25655df59845198825a8fbb8d (diff)
downloadopenttd-b2cf79423dd432c957a581b387a642f8a574a7ab.tar.xz
(svn r4218) - Codechange: Try to make the rdtsc() not present warning message a bit more clear
-rw-r--r--os_timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os_timer.c b/os_timer.c
index 03a99f7aa..efc45c29b 100644
--- a/os_timer.c
+++ b/os_timer.c
@@ -65,6 +65,6 @@ uint64 _rdtsc(void)
/* In all other cases we have no support for rdtsc. No major issue,
* you just won't be able to profile your code with TIC()/TOC() */
#if !defined(RDTSC_AVAILABLE)
-#warning "OS has no support for rdtsc()"
+#warning "(non-fatal) No support for rdtsc(), you won't be able to profile with TIC/TOC"
uint64 _rdtsc(void) {return 0;}
#endif