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:
Nekotekina 2020-12-22 11:42:57 +03:00
parent 41ee792f95
commit b7bf316c1a
96 changed files with 235 additions and 85 deletions

View file

@ -1,10 +1,12 @@
#pragma once
#ifdef HAVE_LIBEVDEV
#include "stdafx.h"
#include "util/types.hpp"
#include "Utilities/File.h"
#include "Emu/Io/PadHandler.h"
#include <libevdev/libevdev.h>
#include <memory>
#include <unordered_map>
#include <vector>
#include <thread>
#include <ctime>