/+junk/c_sdl_joypad_ducktape

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/c_sdl_joypad_ducktape

« back to all changes in this revision

Viewing changes to JSParser.c

  • Committer: Gustav Hartvigsson
  • Date: 2014-01-11 23:32:10 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140111233210-2lnw8934cjd5p848
* reorganising code to be remove extra typedefs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    return NULL;
47
47
  }
48
48
  
49
 
  self->js_cx = JS_NewContext (self->js_rt, 1024 * 8); /** Do not change. **/
 
49
  self->js_cx = JS_NewContext (self->js_rt, 1024 * 8); /* Do not change. **/
50
50
  
51
51
  if (!self->js_cx) {
52
52
    print_error ("Could not contruct JSContext.");