Fixed a few compiler warnings.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2555 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Marcus Wanners
2009-03-05 02:11:37 +00:00
parent 20186db587
commit 0b6bf51c9a
3 changed files with 6 additions and 6 deletions

View File

@ -152,8 +152,8 @@ void GetMousePos(float& x, float& y)
PictureHeight = PictureHeight * Ratio;
// Adjust the X and Y offset
XOffset = XOffset - (IncreasedWidth / 2.0);
YOffset = YOffset - (IncreasedHeight / 2.0);
XOffset = float(XOffset - (IncreasedWidth / 2.0));
YOffset = float(YOffset - (IncreasedHeight / 2.0));
// Logging
/*