When I compile a fresh VS2010 template, I usualy get 2 compile errors in core.cpp.
1>c:\programfilesx86\the game creators\agk\ide\silverheart\silverheart\core.cpp(581): warning C4244: '=' : conversion from 'float' to 'int', possible loss of data
1>c:\programfilesx86\the game creators\agk\ide\silverheart\silverheart\core.cpp(590): warning C4244: '=' : conversion from 'float' to 'int', possible loss of data
They can be fixed by changing
height = (int) height*ratio;
to
height = (int) height* (int) ratio;
I do that occationally but I don't know if it has any side effects. AppGameKit works fine without doing those edits anyway and the warning can be ignored.
I usually get a lot of linker wanrings when compiling in debug mode but it's nothing that has caused any issue for me.
Say ONE stupid thing and it ends up as a forum signature forever. - Neuro Fuzzy