From: Holger Schemel Date: Mon, 19 Feb 2018 20:58:16 +0000 (+0100) Subject: fixed bug when checking out-of-bounds frames im graphics definitions X-Git-Tag: 4.0.1.2~3 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;h=f31bfea6c5b1febcda3d90a6f1ed872e39c14dde;hp=f31bfea6c5b1febcda3d90a6f1ed872e39c14dde;p=rocksndiamonds.git fixed bug when checking out-of-bounds frames im graphics definitions - this bug was caused by getFixedGraphicSource() always using 32x32 tile size even if element graphic was defined using smaller tile size like 16x16, resulting in correct definitions to be assumed as out of bounds - fixed by using getGraphicSourceXY() instead, which only uses width and height attributes (which are set to the correct tile size for elements) ---