Skip to content

Commit

Permalink
Removed need for white block image
Browse files Browse the repository at this point in the history
  • Loading branch information
superlou committed May 5, 2018
1 parent fd652c6 commit fdf9971
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion event_list_item.lua
@@ -1,7 +1,7 @@
require 'text_util'
local class = require '30log'

local white_block = resource.load_image('white.png')
local white_block = resource.create_colored_texture(1, 1, 1, 1)

local EventListItem = class("EventListItem")

Expand Down
2 changes: 1 addition & 1 deletion event_list_slide.lua
Expand Up @@ -3,7 +3,7 @@ local class = require '30log'
local json = require 'json'
local Slide = require 'slide'

local white_block = resource.load_image('white.png')
-- local white_block = resource.load_image('white.png')

local EventListSlide = Slide:extend("EventListSlide")
local EventListItem = require 'event_list_item'
Expand Down
2 changes: 1 addition & 1 deletion text_slide.lua
Expand Up @@ -3,7 +3,7 @@ local class = require '30log'
local json = require 'json'
local Slide = require 'slide'

local white_block = resource.load_image('white.png')
local white_block = resource.create_colored_texture(1, 1, 1, 1)

local TextSlide = Slide:extend("TextSlide")

Expand Down
Binary file removed white.png
Binary file not shown.

0 comments on commit fdf9971

Please sign in to comment.