Merge pull request #50 from halian/master

Fix build errors on Mac OS X+
This commit is contained in:
Brendan Hagan
2022-11-18 20:36:08 -05:00
committed by GitHub
6 changed files with 25 additions and 3 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;
}