Skip to content

Commit

Permalink
changes due update and new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mlthelama committed Dec 21, 2022
1 parent 9def340 commit fd7337f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ EXTERN_C [[maybe_unused]] __declspec(dllexport) constinit auto SKSEPlugin_Versio
v.AuthorName(Version::AUTHOR);
v.PluginVersion({ Version::MAJOR, Version::MINOR, Version::PATCH, Version::BETA });
v.UsesAddressLibrary(true);
v.CompatibleVersions({ SKSE::RUNTIME_SSE_LATEST_SE });
v.CompatibleVersions({ SKSE::RUNTIME_SSE_1_6_353 });
v.HasNoStructUse(true);
return v;
}();

Expand Down
3 changes: 3 additions & 0 deletions src/scaleform/menu/dialogueinfomenu.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ namespace scaleform {

const auto gender = actor_data::get_gender(actor_base);
const auto race = actor->GetRace()->GetName();
//create a map for formid to english name + make translations for that
logger::trace("Race formid is {}, name is {}", util::string_util::int_to_hex(actor->GetRace()->GetFormID()), actor->GetRace()->GetName());


update_text(race_, race); //center value
//icon for gender
Expand Down

0 comments on commit fd7337f

Please sign in to comment.