Hello, as far as I know it is designed to be like that, no problem. Update is updating game logic & draw - just drawing stuff, there is a lot of information in the net. Also by default fps is limited, you can unlock it by removing FixedStep & VerticalSync.
So nothing to fix)) There is no need to call Draw every Update, it can cause some performance issues.
If you have no code in update and none in draw, then yes, it would call one then the other, but when you start putting code in the update, it will only call draw as and when it can. If you are finding that draw is not called enough then maybe you want to look at your update call and try to optimise it more.
Hey,
Thanks for your replies. I learned a little more about Monogame. I will try to optimise my Update Method and unlock my FPS.
Thanks @dryhfth for your links, I will read this.
By the way, I don’t think, it is necessary to unlock your fps unless you want more than 60 frames/sec, you can run your game 5000 fps, but you will not feel any difference))