We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ab4fdb commit 7b44263Copy full SHA for 7b44263
2 files changed
include/RE/E/ExtraLight.h
@@ -11,7 +11,7 @@ namespace RE
11
public:
12
static constexpr auto RTTI{ RTTI::ExtraLight };
13
static constexpr auto VTABLE{ VTABLE::ExtraLight };
14
- static constexpr atuo TYPE{ EXTRA_DATA_TYPE::kLight };
+ static constexpr auto TYPE{ EXTRA_DATA_TYPE::kLight };
15
16
// members
17
REFR_LIGHT lightdata; // 18
xmake-rules.lua
@@ -167,7 +167,7 @@ rule("commonlibf4.plugin")
167
depend.on_changed(function()
168
local srcfiles, dstfiles = target:installfiles()
169
if srcfiles and #srcfiles > 0 and dstfiles and #dstfiles > 0 then
170
- task.run("install")
+ task.run("install", { target = target:name() })
171
end
172
end, { changed = target:is_rebuilt(), files = { target:targetfile() } })
173
end)
0 commit comments