Skip to content
Snippets Groups Projects
Commit 53124ca6 authored by Jason Smith's avatar Jason Smith Committed by Scott Lahteine
Browse files

Fix 32-bit crash due to fwretract_settings_t pack(1) (#15333)

parent bd6d144c
Branches
No related tags found
No related merge requests found
......@@ -27,8 +27,6 @@
#include "../inc/MarlinConfigPre.h"
#pragma pack(push, 1) // No padding between fields
typedef struct {
float retract_length, // M207 S - G10 Retract length
retract_feedrate_mm_s, // M207 F - G10 Retract feedrate
......@@ -40,8 +38,6 @@ typedef struct {
swap_retract_recover_feedrate_mm_s; // M208 R - G11 Swap Recover feedrate
} fwretract_settings_t;
#pragma pack(pop)
#if ENABLED(FWRETRACT)
class FWRetract {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment