Skip to content

Commit

Permalink
Support VAM versions after 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
acidbubbles committed Aug 12, 2020
1 parent 971ff53 commit 0eaf5c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ColliderEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCpu' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;VAM_1_20</DefineConstants>
<DefineConstants>DEBUG;TRACE;VAM_GT_1_20</DefineConstants>
<FileAlignment>4096</FileAlignment>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
Expand Down
2 changes: 1 addition & 1 deletion src/ColliderEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private void BuildUI()

public UIDynamicPopup CreatePopupAuto(JSONStorableStringChooser jssc, bool rightSide = false)
{
#if (VAM_1_20)
#if (VAM_GT_1_20)
return CreateFilterablePopup(jssc, rightSide);
#else
return CreateScrollablePopup(jssc, rightSide);
Expand Down

0 comments on commit 0eaf5c6

Please sign in to comment.