/ld27

To get this branch, use:
bzr branch http://9ix.org/bzr/ld27

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-08-25 00:32:21 UTC
  • Revision ID: josh@9ix.org-20130825003221-632jbug07yhqabuo
pickĀ upĀ goals

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
DEBUG = true
3
3
 
4
4
require 'zoetrope'
5
 
--require 'pepperprof'
6
5
 
7
6
--require 'group'
8
7
 
44
43
 
45
44
              self:switchMaze()
46
45
 
47
 
              -- profiling...
48
 
              --the.profiler = newProfiler()
49
 
              --the.profiler:start()
50
 
 
51
46
              self.gameStart = love.timer.getMicroTime()
52
47
              self.lastChange = love.timer.getMicroTime()
53
48
           end,
138
133
           end,
139
134
   onUpdate = function (self, dt)
140
135
                 if the.keys:justPressed('escape') then
141
 
                    if the.profiler then
142
 
                       the.profiler:stop()
143
 
                       local outfile = io.open( "profile.txt", "w+" )
144
 
                       the.profiler:report( outfile )
145
 
                       outfile:close()
146
 
                    end
147
 
 
148
136
                    self.quit()
149
137
                 end
150
138
              end