I've managed to upgrade the gold system to use long double instead of int everything compiles cleanly/works fine. I then decided to add:
and replace all the hard coded values, but when I compile I get this warning on several files:
And the lines that are giving me the warning are:
Where exactly would I need to change this to allow me to go past int, if its too much of a hassle then I think I'll just leave the numbers hard coded.
#define MAX_GOLD 50000000000and replace all the hard coded values, but when I compile I get this warning on several files:
warning: integer constant is too large for "long" typeAnd the lines that are giving me the warning are:
if ( newbet > MAX_GOLD )
{Where exactly would I need to change this to allow me to go past int, if its too much of a hassle then I think I'll just leave the numbers hard coded.