Merge pull request #211 from diamante0018/fix-dedi

Fix dedi
This commit is contained in:
Dss0 2022-04-06 21:51:55 +02:00 committed by GitHub
commit 5ed8792fbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
#define IW4X_COMMAP_VERSION 0

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
#define IW4X_FX_VERSION 1

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
namespace Assets
{

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
namespace Assets
{

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
namespace Assets
{

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
#define IW4X_IMG_VERSION "0"

View File

@ -1,4 +1,4 @@
#include <StdInclude.hpp>
#include <STDInclude.hpp>
#define IW4X_CLIPMAP_VERSION 2

View File

@ -9,7 +9,7 @@ namespace Utils
static Library Load(const std::filesystem::path& path);
static Library GetByAddress(void* address);
Library() : _module(GetModuleHandleA(nullptr)), freeOnDestroy(false) {};
Library() : _module(nullptr), freeOnDestroy(false) {};
explicit Library(const std::string& name, bool freeOnDestroy);
explicit Library(const std::string& name) : _module(GetModuleHandleA(name.data())), freeOnDestroy(true) {};
explicit Library(HMODULE handle);