File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -119,10 +119,16 @@ check_dlls_exist("re2" "${RE2_DLLS}" "REFRAMEWORK_REF_ASSEMBLIES_EXIST_RE2")
119
119
set (RE4_DLLS "REFramework.NET._mscorlib.dll;REFramework.NET._System.dll;REFramework.NET._System.Core.dll;REFramework.NET.application.dll;REFramework.NET.viacore.dll" )
120
120
check_dlls_exist("re4" "${RE4_DLLS} " "REFRAMEWORK_REF_ASSEMBLIES_EXIST_RE4" )
121
121
122
+ # DMC5
123
+ set (DMC5_DLLS "REFramework.NET._mscorlib.dll;REFramework.NET._System.dll;REFramework.NET._System.Core.dll;REFramework.NET.application.dll;REFramework.NET.viacore.dll" )
124
+ check_dlls_exist("dmc5" "${DMC5_DLLS} " "REFRAMEWORK_REF_ASSEMBLIES_EXIST_DMC5" )
125
+
122
126
# DD2
123
127
set (DD2_DLLS "REFramework.NET._System.dll;REFramework.NET.application.dll;REFramework.NET.viacore.dll" )
124
128
check_dlls_exist("dd2" "${DD2_DLLS} " "REFRAMEWORK_REF_ASSEMBLIES_EXIST_DD2" )
125
129
130
+
131
+
126
132
# Define a list of NuGet packages and their versions
127
133
# the last part, the package framework will only be used for copying the files
128
134
set (REFRAMEWORK_NUGET_PACKAGES
Original file line number Diff line number Diff line change @@ -92,10 +92,16 @@ check_dlls_exist("re2" "${RE2_DLLS}" "REFRAMEWORK_REF_ASSEMBLIES_EXIST_RE2")
92
92
set(RE4_DLLS "REFramework.NET._mscorlib.dll;REFramework.NET._System.dll;REFramework.NET._System.Core.dll;REFramework.NET.application.dll;REFramework.NET.viacore.dll")
93
93
check_dlls_exist("re4" "${RE4_DLLS}" "REFRAMEWORK_REF_ASSEMBLIES_EXIST_RE4")
94
94
95
+ # DMC5
96
+ set(DMC5_DLLS "REFramework.NET._mscorlib.dll;REFramework.NET._System.dll;REFramework.NET._System.Core.dll;REFramework.NET.application.dll;REFramework.NET.viacore.dll")
97
+ check_dlls_exist("dmc5" "${DMC5_DLLS}" "REFRAMEWORK_REF_ASSEMBLIES_EXIST_DMC5")
98
+
95
99
# DD2
96
100
set(DD2_DLLS "REFramework.NET._System.dll;REFramework.NET.application.dll;REFramework.NET.viacore.dll")
97
101
check_dlls_exist("dd2" "${DD2_DLLS}" "REFRAMEWORK_REF_ASSEMBLIES_EXIST_DD2")
98
102
103
+
104
+
99
105
# Define a list of NuGet packages and their versions
100
106
# the last part, the package framework will only be used for copying the files
101
107
set(REFRAMEWORK_NUGET_PACKAGES
Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ public static void Render() {
475
475
if ( ImGui . TreeNode ( "AppDomain" ) ) {
476
476
if ( assemblies != null && ImGui . TreeNode ( "Assemblies" ) ) {
477
477
for ( int i = 0 ; i < assemblies . Length ; i ++ ) {
478
- var assembly = assemblies [ i ] ;
478
+ var assembly = assemblies . Get ( i ) ; // There is a strange thing in the generation where newer REE games do not generate an accessor for this, so we have to use Get instead
479
479
var assemblyT = ( assembly as IObject ) . GetTypeDefinition ( ) ;
480
480
var location = assembly . Location ?? "null" ;
481
481
You can’t perform that action at this time.
0 commit comments