Skip to content

Commit e0cf768

Browse files
committed
Update version to v0.21.41
1 parent ccd2835 commit e0cf768

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.25.2 FATAL_ERROR)
22

33
# ---- Project ----
4-
project(RAYX VERSION 0.21.40)
4+
project(RAYX VERSION 0.21.41)
55
set(CMAKE_CXX_STANDARD 23)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)
77
set(CMAKE_CUDA_STANDARD 20)

Intern/rayx-core/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,9 @@ elseif(WIN32)
226226
)
227227
endif()
228228
install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data/nff
229-
DESTINATION ${INSTALL_DATA_DIR})
229+
DESTINATION ${INSTALL_DATA_DIR}/Data)
230230
install(DIRECTORY ${CMAKE_SOURCE_DIR}/Data/PALIK
231-
DESTINATION ${INSTALL_DATA_DIR})
231+
DESTINATION ${INSTALL_DATA_DIR}/Data)
232232
install(DIRECTORY ${CMAKE_SOURCE_DIR}/Scripts
233233
DESTINATION ${INSTALL_DATA_DIR})
234234
include(InstallRequiredSystemLibraries)

Intern/rayx-core/src/Material/NffTable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bool NffTable::load(const char* element, NffTable* out) {
1414

1515
std::transform(elementString.begin(), elementString.end(), elementString.begin(), [](unsigned char c) { return std::tolower(c); });
1616

17-
std::filesystem::path f = ResourceHandler::getInstance().getResourcePath("nff/" + elementString + ".nff");
17+
std::filesystem::path f = ResourceHandler::getInstance().getResourcePath("Data/nff/" + elementString + ".nff");
1818
RAYX_VERB << "Loading NffTable from " << f;
1919
std::ifstream s(f);
2020

Intern/rayx-core/src/Material/PalikTable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bool PalikTable::load(const char* element, PalikTable* out) {
1212
std::string elementString = element;
1313
std::transform(elementString.begin(), elementString.end(), elementString.begin(), [](unsigned char c) { return std::toupper(c); });
1414

15-
std::filesystem::path f = ResourceHandler::getInstance().getResourcePath("PALIK/" + elementString + ".NKP");
15+
std::filesystem::path f = ResourceHandler::getInstance().getResourcePath("Data/PALIK/" + elementString + ".NKP");
1616
RAYX_VERB << "Loading PalikTable from " << f;
1717
std::ifstream s(f);
1818

0 commit comments

Comments
 (0)