Sorry, I guess I didn't phrase that well - I want to know how to get the screen resolution to use (as in, I have the current, but not the wanted). The only way I know to get the resolution is the getDesktopMode function in my previous post, but how would I get two floats for the scale() function from this? How do I just get monitor width/height?
float scaleFactorX = (desktop resolution width)/ 1600;
float scaleFactorY = (desktop resolution height)/ 900;
menu.scale(scaleFactorX, scaleFactorY);
How do I get the width and height?