Fix SDL includes

This commit is contained in:
Jérôme Leclercq 2022-03-20 13:37:27 +01:00
parent b9690e08f3
commit 7621844741
7 changed files with 14 additions and 14 deletions

View File

@ -12,7 +12,7 @@
#include <Nazara/Math/Vector2.hpp>
#include <Nazara/Platform/Enums.hpp>
#include <Nazara/Utility/Image.hpp>
#include <SDL2/SDL_mouse.h>
#include <SDL_mouse.h>
namespace Nz
{

View File

@ -10,7 +10,7 @@
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/MovablePtr.hpp>
#include <Nazara/Utility/Image.hpp>
#include <SDL2/SDL_surface.h>
#include <SDL_surface.h>
namespace Nz
{

View File

@ -8,10 +8,10 @@
#include <Nazara/Platform/Window.hpp>
#include <Nazara/Platform/SDL2/SDLHelper.hpp>
#include <Nazara/Platform/SDL2/WindowImpl.hpp>
#include <SDL2/SDL_clipboard.h>
#include <SDL2/SDL_keyboard.h>
#include <SDL2/SDL_keycode.h>
#include <SDL2/SDL_mouse.h>
#include <SDL_clipboard.h>
#include <SDL_keyboard.h>
#include <SDL_keycode.h>
#include <SDL_mouse.h>
#include <Nazara/Platform/Debug.hpp>
namespace Nz

View File

@ -8,8 +8,8 @@
#define NAZARA_PLATFORM_SDL2_SDLHELPER_HPP
#include <Nazara/Platform/Keyboard.hpp>
#include <SDL2/SDL_keycode.h>
#include <SDL2/SDL_scancode.h>
#include <SDL_keycode.h>
#include <SDL_scancode.h>
namespace Nz
{

View File

@ -5,7 +5,7 @@
#include <Nazara/Platform/SDL2/VideoModeImpl.hpp>
#include <Nazara/Core/Error.hpp>
#include <Nazara/Platform/VideoMode.hpp>
#include <SDL2/SDL_video.h>
#include <SDL_video.h>
#include <algorithm>
#include <Nazara/Platform/Debug.hpp>

View File

@ -12,8 +12,8 @@
#include <Nazara/Platform/SDL2/IconImpl.hpp>
#include <Nazara/Platform/SDL2/SDLHelper.hpp>
#include <Nazara/Utility/Image.hpp>
#include <SDL2/SDL.h>
#include <SDL2/SDL_syswm.h>
#include <SDL.h>
#include <SDL_syswm.h>
#include <Utfcpp/utf8.h>
#include <cstdio>
#include <memory>

View File

@ -17,9 +17,9 @@
#include <Nazara/Platform/Mouse.hpp>
#include <Nazara/Platform/VideoMode.hpp>
#include <Nazara/Platform/Window.hpp>
#include <SDL2/SDL_events.h>
#include <SDL2/SDL_keyboard.h>
#include <SDL2/SDL_video.h>
#include <SDL_events.h>
#include <SDL_keyboard.h>
#include <SDL_video.h>
#include <string>
namespace Nz