mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 01:33:49 +00:00
Don't crop screenshots for save file icons. Fixes borked save icons.
This commit is contained in:
parent
764d106d50
commit
c81d880b41
1 changed files with 2 additions and 2 deletions
|
@ -2928,12 +2928,12 @@ void DSQ::doSaveSlotMenu(SaveSlotMode ssm, const Vector &position)
|
|||
os << dsq->getSaveDirectory() << "/screen-" << numToZeroString(selectedSaveSlot->getSlotIndex(), 4) << ".zga";
|
||||
|
||||
// Cut off top and bottom to get a 4:3 aspect ratio.
|
||||
int adjHeight = (scrShotWidth * 3.0f) / 4.0f;
|
||||
/*int adjHeight = (scrShotWidth * 3.0f) / 4.0f;
|
||||
int imageDataSize = scrShotWidth * scrShotHeight * 4;
|
||||
int adjImageSize = scrShotWidth * adjHeight * 4;
|
||||
int adjOffset = scrShotWidth * ((scrShotHeight-adjHeight)/2) * 4;
|
||||
memmove(scrShotData, scrShotData + adjOffset, adjImageSize);
|
||||
memset(scrShotData + adjImageSize, 0, imageDataSize - adjImageSize);
|
||||
memset(scrShotData + adjImageSize, 0, imageDataSize - adjImageSize);*/
|
||||
zgaSaveRGBA(os.str().c_str(), scrShotWidth, scrShotHeight, scrShotData);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue