Skip to content

Commit c043e45

Browse files
authored
fix other build errors
1 parent 20b4ab4 commit c043e45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/GameEventHandler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ namespace plugin {
107107
FaceMorphData(fg_node, npc, relative, std::string(morphName->c_str()), handle));
108108
if (multi_morph_tasks_scheduled == 0) {
109109
multi_morph_tasks_scheduled += 1;
110-
std::thread t([] () {
110+
std::thread t([]() {
111111
std::this_thread::sleep_for(std::chrono::milliseconds(500));
112112
SKSE::GetTaskInterface()->AddTask([]() {
113113
std::lock_guard<std::recursive_mutex> l(queued_morphs_mutex);
@@ -138,7 +138,7 @@ namespace plugin {
138138
for (auto &ah: updated_actors) {
139139
if (auto actor = ah->get()) {
140140
if (actor->Is3DLoaded()) {
141-
if (auto node = actor->GetFaceNode())) {
141+
if (auto node = actor->GetFaceNode()) {
142142
UpdateFaceModel(node);
143143
WalkRecalculateNormals(node);
144144
}

0 commit comments

Comments
 (0)