aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/tutorial/thread2
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/tutorial/thread2')
-rw-r--r--externals/grill/flext/tutorial/thread2/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/externals/grill/flext/tutorial/thread2/main.cpp b/externals/grill/flext/tutorial/thread2/main.cpp
index 2cdc37c3..0abb5962 100644
--- a/externals/grill/flext/tutorial/thread2/main.cpp
+++ b/externals/grill/flext/tutorial/thread2/main.cpp
@@ -41,11 +41,11 @@ protected:
void m_textout();
private:
- FLEXT_THREAD_I(m_start); // define threaded callback for method m_start
- FLEXT_CALLBACK(m_stop); // normal callback for m_stop
- FLEXT_CALLBACK(m_text); // turn on console output
+ FLEXT_THREAD_I(m_start) // define threaded callback for method m_start
+ FLEXT_CALLBACK(m_stop) // normal callback for m_stop
+ FLEXT_CALLBACK(m_text) // turn on console output
- FLEXT_THREAD(m_textout); // text output
+ FLEXT_THREAD(m_textout) // text output
float delay;
volatile int count;