So I just got a dlp projection tv ...
based on how these things work, you need to use 1:1 pixel mapping to avoid some artifacts in the graphics ... if each pixel doesn't hit its assigned mirror perfectly some annoying things happen with single pixel text, and patterns of single pixels
anyway.
I found this section in the CvMainInterface.py
Code:
# Find out our resolution
# 12monkeys - PlotList Button Enhancement - begin
# xResolution = screen.getXResolution()
# yResolution = screen.getYResolution()
# screen.setDimensions(0, 0, xResolution, yResolution)
#FfH: Added by Kael 08/25/2006
self.pOldPlot = 0
#FfH: End Add
self.xResolution = screen.getXResolution()
self.yResolution = screen.getYResolution()
# Find out our resolution
Trophies.init()
# this is only to prevent changing all variables in the code.
xResolution = self.xResolution
yResolution = self.yResolution
screen.setDimensions(0, 0, self.xResolution, self.yResolution)
not knowing anything about scripting ... would it work to simply put:
xResolution = self.xResolution - 15
or
screen.setDimensions(10, 10, self.xResolution-10, self.yResolution-10)
or something like that?
Ideally it would be a sort of 'virtual resolution' sitting on top of the actual resolution ..