mirror of
https://github.com/wiiu-env/homebrew_launcher.git
synced 2025-04-20 15:51:24 +02:00
Fix compiling
This commit is contained in:
parent
671905758a
commit
fe5604de4d
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user