mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
Don't randomly include "stdafx.h"
It's file for precompiled headers. Include what is used, don't rely on transitive includes.
This commit is contained in:
parent
41ee792f95
commit
b7bf316c1a
96 changed files with 235 additions and 85 deletions
|
@ -1,11 +1,12 @@
|
|||
#include "stdafx.h"
|
||||
#include "update_manager.h"
|
||||
#include "progress_dialog.h"
|
||||
#include "localized.h"
|
||||
#include "rpcs3_version.h"
|
||||
#include "downloader.h"
|
||||
#include "Utilities/StrUtil.h"
|
||||
#include "Utilities/File.h"
|
||||
#include "Emu/System.h"
|
||||
#include "util/logs.hpp"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDateTime>
|
||||
|
@ -15,7 +16,9 @@
|
|||
#include <QThread>
|
||||
|
||||
#if defined(_WIN32)
|
||||
#ifndef NOMINMAX
|
||||
#define NOMINMAX
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#include <CpuArch.h>
|
||||
#include <7z.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue