Skip to content

Commit

Permalink
Fix Release Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
wagrenier committed Nov 28, 2023
1 parent 4ba382c commit af50a24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ add_subdirectory(third-party)
add_subdirectory(Extractor)
add_subdirectory(ModelConverter)

add_custom_target(copy-runtime-files ALL COMMAND ${CMAKE_COMMAND} -E copy_directory ./resource ${CMAKE_BINARY_DIR}/Obscura DEPENDS ${MY_TARGET})
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/resource/ZeroFileDictionary.json DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
9 changes: 5 additions & 4 deletions ModelConverter/game/packfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

#include <stdint.h>

typedef struct { // 0x10
/* 0x0 */ int pak_num;
/* 0x4 */ int map_flg;
/* 0x8 */ int pad[2];
typedef struct
{
int pak_num;
int map_flg;
int pad[2];
} MANMPK_HEADER;

struct PK2_HEAD
Expand Down

0 comments on commit af50a24

Please sign in to comment.