gui.text - remove hacks that attempt use window size. Better logic is to be pure client space, and let gui.drawText do anything else

This commit is contained in:
adelikat 2014-05-14 23:44:46 +00:00
parent 3ec27c502c
commit 55b4dcd53c
1 changed files with 0 additions and 4 deletions

View File

@ -516,10 +516,6 @@ namespace BizHawk.Client.EmuHawk
y -= Global.Emulator.CoreComm.ScreenLogicalOffsetY;
}
// blah hacks
x *= EmuHawkLuaLibrary.GetWindowSize();
y *= EmuHawkLuaLibrary.GetWindowSize();
GlobalWin.OSD.AddGUIText(message, x, y, GetColor(background ?? "black"), GetColor(forecolor ?? "white"), a);
}
}