I do not believe that it should matter tbh, the only setting that seems to affect mapshots at all is screenshottype:
and of course some stuff in the individual screenshot functions like:
I seem to recall mapshots working fine for me in 1104, i'll have a thorough test of it all when I get a chance though.
main.cpp Wrote:void mapshot()
{
string suffix;
switch(screenshottype)
{
case 2: copystring(suffix, "png"); break;
case 1: copystring(suffix, "jpg"); break;
case 0:
default: copystring(suffix, "bmp"); break;
}
defformatstring(buf)("screenshots/mapshot_%s_%s.%s", behindpath(getclientmap()), timestring(), suffix);
switch(screenshottype)
{
case 2: png_screenshot(buf,true); break;
case 1: jpeg_screenshot(buf,true); break;
case 0:
default: bmp_screenshot(buf,true); break;
}
}
and of course some stuff in the individual screenshot functions like:
main.cpp Wrote:if(mapshot)
{
extern GLuint minimaptex;
if(minimaptex)
{
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
glBindTexture(GL_TEXTURE_2D, minimaptex);
glGetTexImage(GL_TEXTURE_2D, 0, GL_RGB, GL_UNSIGNED_BYTE, tmp);
}
else
{
conoutf("no mapshot prepared!");
return;
}
}
I seem to recall mapshots working fine for me in 1104, i'll have a thorough test of it all when I get a chance though.