Skip to content

Commit

Permalink
Fix DevTools for 2.204 (#23)
Browse files Browse the repository at this point in the history
* Geode requires "gd" in meta data

* supportsDisabling is no longer present

cgytrus why did you replace it

* Support any gd version
  • Loading branch information
FireMario211 authored Jan 18, 2024
1 parent 803df0a commit 4ff86f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"geode": "v2.0.0",
"version": "v1.3.0",
"gd": "*",
"id": "geode.devtools",
"name": "DevTools",
"developer": "Geode Team",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Advanced.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ void DevTools::drawModGraphNode(Mod* node) {

node->setMetadata(this->inputMetadata(node, node->getMetadata()));

ImGui::Text("supportsDisabling: %s", node->supportsDisabling() ? "true" : "false");
ImGui::Text("isInternal: %s", node->isInternal() ? "true" : "false");
ImGui::Text("early: %s", node->needsEarlyLoad() ? "true" : "false");
ImGui::Text("hasUnresolvedDependencies: %s", node->hasUnresolvedDependencies() ? "true" : "false");
ImGui::Text("hasUnresolvedIncompatibilities: %s", node->hasUnresolvedIncompatibilities() ? "true" : "false");
Expand Down

0 comments on commit 4ff86f3

Please sign in to comment.