mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-19 22:37:46 +01:00
Fix not being able to compile due to missing assemblies and changed name.
This commit is contained in:
parent
ff17620d85
commit
fb2f212970
2 changed files with 2 additions and 1 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<UseWindowsForms>true</UseWindowsForms>
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@ namespace Penumbra.UI
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
var ret = ImGui.Begin( _base._penumbra.PluginDebugTitleStr, ref Visible );
|
var ret = ImGui.Begin( _base._penumbra.PluginDebugTitleStr, ref Visible );
|
||||||
#else
|
#else
|
||||||
var ret = ImGui.Begin( _base._plugin.Name, ref Visible );
|
var ret = ImGui.Begin( _base._penumbra.Name, ref Visible );
|
||||||
#endif
|
#endif
|
||||||
if( !ret )
|
if( !ret )
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue