File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -135,30 +135,12 @@ ExecutablesList::getPluginExecutables(MOBase::IPluginGame const* game) const
135
135
Q_ASSERT (game != nullptr );
136
136
137
137
std::vector<Executable> v;
138
- uint64_t executableHash;
139
138
140
139
for (const ExecutableInfo& info : game->executables ()) {
141
140
if (!info.isValid ()) {
142
141
continue ;
143
142
}
144
143
145
- // Hide NVSE from executable list by default if it's patched
146
- if (info.title () == " Tale of Two Wastelands" || info.title () == " New Vegas" ) {
147
- executableHash = getFileHash (info.binary ().absoluteFilePath ().toStdWString ());
148
- v.push_back ({info, Executable::UseApplicationIcon});
149
- }
150
-
151
- if (info.title () == " NVSE" ) {
152
- const std::unordered_set<uint64_t > patchedExecutableHashes = {
153
- 7625907240992332651 , // patched gog
154
- 7658157216307907036 , // patched epic
155
- 12047903279041789040 , // patched steam
156
- };
157
- if (patchedExecutableHashes.count (executableHash) > 0 ) {
158
- v.push_back ({info, Executable::UseApplicationIcon | Executable::Hide});
159
- } else
160
- v.push_back ({info, Executable::UseApplicationIcon});
161
- }
162
144
v.push_back ({info, Executable::UseApplicationIcon});
163
145
}
164
146
You can’t perform that action at this time.
0 commit comments