From 5b761e6bad2751051218928195c6e54edcd3480a Mon Sep 17 00:00:00 2001 From: snake-biscuits <36507175+snake-biscuits@users.noreply.github.com> Date: Wed, 6 Dec 2023 04:10:54 +0000 Subject: [PATCH] correct `titanfall2::sprp_VERSION` --- src/main.cpp | 1 + src/titanfall.hpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e797a8d..9125101 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -35,6 +35,7 @@ int main(int argc, char* argv[]) { return ret; } + int convert(char* in_filename, char* out_filename) { Bsp r1bsp(in_filename); if (!r1bsp.is_valid() || r1bsp.header_->version != titanfall::VERSION) { diff --git a/src/titanfall.hpp b/src/titanfall.hpp index bd10bfe..eca1a2e 100644 --- a/src/titanfall.hpp +++ b/src/titanfall.hpp @@ -8,7 +8,7 @@ namespace titanfall { const int VERSION = 29; - const int sprp_VERSION = 12; + const int sprp_VERSION = 13; /* LUMP INDICES */ const int GAME_LUMP = 0x23; const int LIGHTPROBE_REFS = 0x68;