-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error with Iterator Patch #155
Comments
I'll give it a check, maybe I need to update the patch. I'll keep you in loop |
Just to confirm. I'm getting the the same issue from a fresh clone. The commit I tried this on is |
I looked at the patch file and it looks like the part in question doesn't do anything except mess with whitespace? @@ -1284,8 +1284,8 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
}
/* todo restore
- OS::get_singleton()->_allow_layered = GLOBAL_DEF("display/window/per_pixel_transparency/allowed", false);
- video_mode.layered = GLOBAL_DEF("display/window/per_pixel_transparency/enabled", false);
+ OS::get_singleton()->_allow_layered = GLOBAL_DEF("display/window/per_pixel_transparency/allowed", false);
+ video_mode.layered = GLOBAL_DEF("display/window/per_pixel_transparency/enabled", false);
*/
GLOBAL_DEF("rendering/quality/intended_usage/framebuffer_allocation", 2);
GLOBAL_DEF("rendering/quality/intended_usage/framebuffer_allocation.mobile", 3); the last two lines got moved somewhere else in main which I think is the problem. |
@matthew-salerno Youp, that part was doing an useless format fix. I've removed it: https://github.com/GodotECS/godex/blob/main/patches/add_custom_iterator.patch |
Wouldn't it make sense to add this custom iterator feature to Godot? Or did you already try and it was rejected? |
I've a PR to introduce that feature: godotengine/godot#42875, though Reduz is working on a slightly different solution that works also when using the new GDExtension. Once t |
There's an error when applying the iterator patch on commits recommended commits 81fc9fa1dc9162cb50e77ab5f7d7085eb3c4bc9e
28f56e2cbf03a164741f2eade17f9515f887482c
Here's the log for 81fc9fa1dc9162cb50e77ab5f7d7085eb3c4bc9e
The text was updated successfully, but these errors were encountered: