Ticket #2427: 2427.3.patch

File 2427.3.patch, 1.6 KB (added by trompetin17, 10 years ago)
  • source/lib/sysdep/os/osx/dir_watch.cpp

     
    1 /* Copyright (c) 2013 Wildfire Games
     1/* Copyright (c) 2014 Wildfire Games
    22 *
    33 * Permission is hereby granted, free of charge, to any person obtaining
    44 * a copy of this software and associated documentation files (the
     
    188188{
    189189  if ( g_Stream == NULL )
    190190  {
    191     g_Stream = CreateEventStream( g_RootPaths );   
     191    if (!g_RootPaths.empty())
     192    {
     193      g_Stream = CreateEventStream( g_RootPaths );
     194    }
    192195  }
    193196  else
    194197  {
  • source/tools/atlas/AtlasUI/Misc/DLLInterface.cpp

     
    1 /* Copyright (C) 2012 Wildfire Games.
     1/* Copyright (C) 2014 Wildfire Games.
    22 * This file is part of 0 A.D.
    33 *
    44 * 0 A.D. is free software: you can redistribute it and/or modify
     
    144144    int argc = 1;
    145145    char atlas[] = "atlas";
    146146    char *argv[] = {atlas, NULL};
    147     wxEntry(argc, argv);
     147   
     148    wxEntryStart(argc, argv);
     149    wxTheApp->OnInit();
     150   
     151    wxTheApp->OnRun();
     152    wxTheApp->OnExit();
     153   
     154    wxEntryCleanup();
     155   
    148156#endif
    149157}
    150158
     
    174182class AtlasDLLApp : public wxApp
    175183{
    176184public:
    177 
     185    virtual bool OSXIsGUIApplication()
     186    {
     187        return false;
     188    }
    178189    virtual bool OnInit()
    179190    {
    180191//      _CrtSetBreakAlloc(5632);