Skip to content

Commit

Permalink
Fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Sep 28, 2024
1 parent 08eaf7e commit 0a24467
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/RE/B/BGSSaveLoadManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace RE
class BGSSaveLoadFileEntry
{
public:
enum class SaveType : std::uint32_t
enum class SaveType
{
kAutosave = 0x0,
kSave = 0x1,
Expand Down Expand Up @@ -54,7 +54,7 @@ namespace RE
std::uint16_t pad6A; // 6A
std::uint32_t characterID; // 6C
stl::enumeration<SaveType, std::uint32_t> saveType; // 70
std::uint32_t pad74; // 74
std::uint32_t pad74; // 74
};
static_assert(sizeof(BGSSaveLoadFileEntry) == 0x78);

Expand Down
2 changes: 1 addition & 1 deletion src/RE/B/BGSSaveLoadManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace RE
Load_Impl(a_fileName, -1, 0, a_checkForMods);
}

void BGSSaveLoadManager::PopulateSaveList()
bool BGSSaveLoadManager::PopulateSaveList()
{
using func_t = decltype(&BGSSaveLoadManager::PopulateSaveList);
static REL::Relocation<func_t> func{ RELOCATION_ID(34850, 35760) };
Expand Down

0 comments on commit 0a24467

Please sign in to comment.