Fix compiling

This commit is contained in:
Maschell 2019-11-16 14:42:45 +01:00
parent 671905758a
commit fe5604de4d
5 changed files with 5 additions and 1 deletions

View File

@ -45,7 +45,7 @@ int32_t CFile::open(const std::string & filepath, eOpenTypes mode) {
openMode = O_RDWR;
break;
case Append: // append to file, file will be created if missing. write only
openMode = O_CREATE | O_APPEND | O_WRONLY;
openMode = O_CREAT | O_APPEND | O_WRONLY;
break;
}

View File

@ -20,6 +20,7 @@
#include "fs/DirList.h"
#include "fs/FSUtils.h"
#include "utils/HomebrewXML.h"
#include "resources/Resources.h"
#include "utils/utils.h"
#include "Application.h"

View File

@ -21,6 +21,7 @@
#include "fs/FSUtils.h"
#include "system/AsyncDeleter.h"
#include "utils/HomebrewXML.h"
#include "resources/Resources.h"
#include "utils/utils.h"
#include "utils/logger.h"
#include "HomebrewLaunchWindow.h"

View File

@ -18,6 +18,7 @@
#include "Application.h"
#include "utils/StringTools.h"
#include "utils/logger.h"
#include "resources/Resources.h"
MainWindow::MainWindow(int w, int h)

View File

@ -15,6 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include "ProgressWindow.h"
#include "resources/Resources.h"
#include <gui/video/CVideo.h>
ProgressWindow::ProgressWindow(const std::string & title)