Fixed Watcom compiler setup without verification using a patch by mnieuw

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5699 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher
2007-02-20 17:02:41 +00:00
parent 658162c509
commit 8ea59b412e
9 changed files with 40 additions and 22 deletions
+3 -3
View File
@@ -21,10 +21,10 @@ that will help you to get the most out of FLTK.</P>
int main() {
Fl::lock();
/* run thread */
while (Fl::wait() > 0) {
if (Fl::thread_message()) {
while (Fl::wait() &lt; 0) {
if (Fl::thread_message()) {
/* process your data */
}
}
}
}
</pre>