Skip to content

Commit

Permalink
rename engine pak file to quakespasm-exp.pak
Browse files Browse the repository at this point in the history
fix #30
  • Loading branch information
alexey-lysiuk committed Aug 11, 2023
1 parent e89a6a7 commit 6a08c1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,6 @@ set(ENGINE_PAK_SOURCES
)

add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD
COMMAND makeqpak "$<TARGET_FILE_DIR:${PROJECT_NAME}>/quakespasm.pak" ${ENGINE_PAK_SOURCES}
COMMAND makeqpak "$<TARGET_FILE_DIR:${PROJECT_NAME}>/quakespasm-exp.pak" ${ENGINE_PAK_SOURCES}
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/Misc/qs_pak"
)
2 changes: 1 addition & 1 deletion Quake/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -2054,7 +2054,7 @@ static void COM_AddGameDirectory (const char *base, const char *dir)
else {
qboolean old = com_modified;
if (been_here) base = host_parms->userdir;
q_snprintf (pakfile, sizeof(pakfile), "%s/quakespasm.pak", base);
q_snprintf (pakfile, sizeof(pakfile), "%s/quakespasm-exp.pak", base);
qspak = COM_LoadPackFile (pakfile);
com_modified = old;
}
Expand Down

0 comments on commit 6a08c1e

Please sign in to comment.