Skip to content

Commit

Permalink
Add Diablo Version 1.08-Specific Behavior with Preprocessor Directives (
Browse files Browse the repository at this point in the history
#2292)

* add preprocessor directive for version 1.08

* Update MakefileVC

* Missed "endif"

* revise handling of diablo version
  • Loading branch information
kphoenix137 authored Mar 6, 2024
1 parent 2aa3919 commit 27e6ef5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MakefileVC
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ endif
CFLAGS=/nologo /c /GX /W3 /O1 /I $(VC_INC_DIR) /FD /Gr /MT /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /Fp"Diablo.pch" /YX /G5 /Zi /FAs
LINKFLAGS=/nologo /subsystem:windows /machine:I386 /incremental:no

VERSION := 109

CFLAGS += /D "VERSION=$(VERSION)"

ifeq ($(HELLFIRE),1)
CFLAGS += /D "HELLFIRE"
endif
Expand Down
4 changes: 4 additions & 0 deletions Source/path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ int path_get_h_cost(int sx, int sy, int dx, int dy)
int max = delta_x > delta_y ? delta_x : delta_y;

// see path_check_equal for why this is times 2
#if VERSION == 108
return min + (2 * max);
#else
return 2 * (min + max);
#endif
}

/**
Expand Down

0 comments on commit 27e6ef5

Please sign in to comment.