make Mac OS X+ binary build again

This commit is contained in:
Carl Miller, Jr
2021-08-24 23:09:06 -04:00
parent 0a00eaa082
commit 275f18a324
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ bool update_available() {
class CheckUpdateThread : public wxThread {
public:
void* Entry() override {
Work();
// Work();
return 0;
}
+1
View File
@@ -27,6 +27,7 @@ template <> void GetDefaultMember::handle(const tribool& v) { value = to_sc
template <> void GetDefaultMember::handle(const Vector2D& v) { value = to_script(String::Format(_("(%.10lf,%.10lf)"), v.x, v.y)); }
template <> void GetDefaultMember::handle(const Color& v) { value = to_script(v); }
template <> void GetDefaultMember::handle(const wxDateTime& v) { value = to_script(v); }
template <> void GetDefaultMember::handle(const unsigned long& v) { value = to_script((int)v); }
void GetDefaultMember::handle(const ScriptValueP& v) { value = v; }
void GetDefaultMember::handle(const ScriptP& v) { value = v; }