CAM: Add missing initializers

This commit is contained in:
Chris Hennes
2025-07-20 14:51:18 -05:00
committed by Kacper Donat
parent 1805e17427
commit 8ef5f8a827
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ struct GuiItem
unsigned int flags {};
bool mouseOver {};
TextureItem texItem {};
QString toolTip;
QString toolTip {};
int posx()
{

View File

@@ -32,7 +32,7 @@ namespace MillSim
MillSimulation::MillSimulation()
{
mCurMotion = {eNop, -1, 0, 0, 0, 0, 0, 0, 0};
mCurMotion = {eNop, -1, 0, 0, 0, 0, 0, 0, 0, '\0', 0.0};
guiDisplay.SetMillSimulator(this);
}