13
0

Fix for mingw compiler

This commit is contained in:
Paul Davis 2013-07-11 13:04:39 -04:00
parent 350bd56a06
commit 0c3bbd41dd

View File

@ -495,7 +495,11 @@ int main(int argc, char **argv)
}
delete[] obf;
} else {
#ifdef WIN32
RubberBand::usleep(10000);
#else
usleep(10000);
#endif
}
}