From c90af52dac4be7fe14da2f915bb458ac39a07632 Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Fri, 10 May 2024 02:43:40 +0200 Subject: [PATCH] remove unused psapi header --- Makefile | 2 +- src/hook.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3daa0b7..3371861 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ TARGET = ddraw.dll LDFLAGS = -Wl,--enable-stdcall-fixup -s -static -shared CFLAGS = -Iinc -O2 -march=i486 -Wall -LIBS = -lgdi32 -lwinmm -lpsapi -ldbghelp -lole32 +LIBS = -lgdi32 -lwinmm -ldbghelp -lole32 CC = i686-w64-mingw32-gcc WINDRES ?= i686-w64-mingw32-windres diff --git a/src/hook.c b/src/hook.c index 653e891..4ea34b7 100644 --- a/src/hook.c +++ b/src/hook.c @@ -1,7 +1,6 @@ #define WIN32_LEAN_AND_MEAN #include #include -#include #include "directinput.h" #include "dd.h" #include "winapi_hooks.h"