Commit 9930fece4a6c7c9804afd32376d01c553476457a

Authored by dg
1 parent f699c37f

fix


git-svn-id: http://svn.net-core.org/repos/t-engine4@5438 51575b47-30f0-44d4-a5cc-537603b46e54
... ... @@ -84,7 +84,7 @@ function _M:generate()
84 84
85 85 local direct_draw= function(item, x, y, w, h, total_w, total_h, loffset_x, loffset_y, dest_area)
86 86 -- if there is object and is withing visible bounds
87   - if item.object and total_h + h > loffset_y and total_h < loffset_y + dest_area.h then
  87 + if game.config.settings.fbo_active and item.object and total_h + h > loffset_y and total_h < loffset_y + dest_area.h then
88 88 local clip_y_start, clip_y_end = 0, 0
89 89 -- if it started before visible area then compute its top clip
90 90 if total_h < loffset_y then
... ...
... ... @@ -1214,6 +1214,7 @@ function _M:setupCommands()
1214 1214 end end,
1215 1215 [{"_g","ctrl"}] = function() if config.settings.cheat then
1216 1216 self:changeLevel(1, "noxious-caldera")
  1217 +-- FINISH CALDERA
1217 1218 do return end
1218 1219 self:registerDialog(require("mod.dialogs.DownloadCharball").new())
1219 1220 local f, err = loadfile("/data/general/events/fearscape-portal.lua")
... ...
No preview for this file type