Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
misc: fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Oct 2, 2023
1 parent 85d326c commit d23323f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/game/math.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "game/math.h"

#include "global/const.h"
#include "util.h"

Expand Down
8 changes: 4 additions & 4 deletions src/global/types.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#pragma once

#include <stdint.h>
#include <windows.h>
#include <stdbool.h>
#include <d3dhal.h>
#include <ddraw.h>
#include <ddrawi.h>
#include <d3dhal.h>
#include <stdbool.h>
#include <stdint.h>
#include <windows.h>

typedef DDSURFACEDESC DDSDESC, *LPDDSDESC;
typedef LPDIRECTDRAWSURFACE3 LPDDS;
Expand Down
2 changes: 1 addition & 1 deletion src/inject_exec.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "inject_exec.h"

#include "game/matrix.h"
#include "game/math.h"
#include "game/matrix.h"
#include "inject_util.h"

static void Inject_Matrix(void);
Expand Down

0 comments on commit d23323f

Please sign in to comment.