diff options
author | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-10-26 01:44:29 +0100 |
---|---|---|
committer | TheLastRar <TheLastRar@users.noreply.github.com> | 2022-11-03 21:35:27 +0000 |
commit | c993209b763f1d00e2e003d6ea6fa6c5d1afec02 (patch) | |
tree | 47c262a78f5ca1286d03bcaf64e891ce482d4f32 | |
parent | 2cf4d5f8ecd4afb1179b5a4e3bf694bcd359b628 (diff) | |
download | PrismLauncher-c993209b763f1d00e2e003d6ea6fa6c5d1afec02.tar.gz PrismLauncher-c993209b763f1d00e2e003d6ea6fa6c5d1afec02.tar.bz2 PrismLauncher-c993209b763f1d00e2e003d6ea6fa6c5d1afec02.zip |
Fix: Explicitly specify Version.h path
MSVC uses a different search mechanism that ends up picking the mete Version.h
Signed-off-by: TheLastRar <TheLastRar@users.noreply.github.com>
-rw-r--r-- | launcher/modplatform/ModAPI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/ModAPI.h b/launcher/modplatform/ModAPI.h index c7408835..703de143 100644 --- a/launcher/modplatform/ModAPI.h +++ b/launcher/modplatform/ModAPI.h @@ -39,7 +39,7 @@ #include <QList> #include <list> -#include "Version.h" +#include "../Version.h" #include "net/NetJob.h" namespace ModPlatform { |