Skip to content

Commit

Permalink
remove ExampleProject, F4SEStub, Tests, fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shad0wshayd3 committed May 14, 2024
1 parent fab895c commit 6f41edc
Show file tree
Hide file tree
Showing 68 changed files with 7 additions and 6,077 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,3 @@ jobs:
- name: Build
working-directory: ${{ github.workspace }}/main
run: cmake --build build --config ${{ env.BUILD_TYPE }}

- name: Run tests
working-directory: ${{ github.workspace }}/main/build
run: ctest -V
5 changes: 0 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,4 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
conditionally_add_subdirectory(AddressLibDecoder)
conditionally_add_subdirectory(AddressLibGen)
conditionally_add_subdirectory(CommonLibF4)
conditionally_add_subdirectory(ExampleProject)
conditionally_add_subdirectory("F4SEStub/runtime" f4se_runtime)
conditionally_add_subdirectory("F4SEStub/loader" f4se_loader)
conditionally_add_subdirectory("F4SEStub/steam_loader" f4se_steam_loader)
conditionally_add_subdirectory(RTTIDump)
conditionally_add_subdirectory(Tests)
6 changes: 3 additions & 3 deletions CommonLibF4/include/RE/Bethesda/BGSCharacterTint.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ namespace RE
virtual BGSCharacterTint::EntryType GetType(); // 28

// Members
BGSCharacterTint::Template::Entry* template; // 08
const std::uint16_t idLink; // 10
std::uint8_t tingingValue; // 12
BGSCharacterTint::Template::Entry* templateEntry; // 08
const std::uint16_t idLink; // 10
std::uint8_t tingingValue; // 12
};
static_assert(sizeof(Entry) == 0x18);

Expand Down
6 changes: 3 additions & 3 deletions CommonLibF4/include/RE/Bethesda/MenuTopicManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace RE
[[nodiscard]] static MenuTopicManager* GetSingleton()
{
REL::Relocation<MenuTopicManager**> singleton{ REL::ID(520890) }; // TODO: Update
return singleton*
return *singleton;
}

// members
Expand All @@ -38,11 +38,11 @@ namespace RE
bool showHelpButton; // 53
bool needEnterDialogueAction; // 54
bool allowInput; // 55
bool 3rdPartyCameraReady; // 56
bool thirdPartyCameraReady; // 56
bool speechChallengeAlwaysSucceed; // 57
bool speechChallengeAlwaysFail; // 58
bool overSceneActor; // 59
bool forceCameraRotationStart; // 5A
};
static_assert(sizeof(MenuTopicManager) = 0x60)
static_assert(sizeof(MenuTopicManager) == 0x60);
}
2 changes: 1 addition & 1 deletion CommonLibF4/include/RE/Bethesda/TESBoundObjects.h
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ namespace RE

bool IsOneHandedWeapon()
{
retunr(this->weaponData.type.underlying() <= 4 || this->weaponData.type.underlying() == 8);
return (this->weaponData.type.underlying() <= 4 || this->weaponData.type.underlying() == 8);
}

bool IsEmbeddedWeapon()
Expand Down
101 changes: 0 additions & 101 deletions ExampleProject/.clang-format

This file was deleted.

11 changes: 0 additions & 11 deletions ExampleProject/.editorconfig

This file was deleted.

1 change: 0 additions & 1 deletion ExampleProject/.gitignore

This file was deleted.

210 changes: 0 additions & 210 deletions ExampleProject/CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 6f41edc

Please sign in to comment.