Skip to content

Commit

Permalink
Merge pull request #11 from wagrenier/FixReleasePipeline
Browse files Browse the repository at this point in the history
Fix Release Pipeline
  • Loading branch information
wagrenier authored Nov 28, 2023
2 parents 4ba382c + af50a24 commit c4fdb79
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 c4fdb79

Please sign in to comment.