add #ifdefs for OSX-specific code

This commit is contained in:
Carl Miller, Jr
2021-08-27 06:56:59 -04:00
parent 275f18a324
commit 9d41397848
5 changed files with 21 additions and 11 deletions
+3 -1
View File
@@ -92,7 +92,9 @@ bool update_available() {
class CheckUpdateThread : public wxThread {
public:
void* Entry() override {
// Work();
#ifndef __APPLE__
Work();
#endif
return 0;
}