/+junk/c_sdl_joypad

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

« back to all changes in this revision

Viewing changes to JSParser.c

  • Committer: Gustav Hartvigsson
  • Date: 2014-01-09 20:52:05 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140109205205-sfyufo4y4q975u5b
woopwoopss

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  GameJSParser * self = malloc (sizeof(GameJSParser));
29
29
  if (file_name != NULL && stript != NULL) {
30
30
    print_error (
31
 
      "You can not use both a script and a file when creating a GameJSParser."
32
 
      "Exacly ONE of these must be used.\n"
 
31
      "You can not use both a script and a file when creating a GameJSParser.\n"
 
32
      "Exacly ONE of these must be used."
33
33
    );
34
34
    game_js_parser_free (self);
35
35
    return NULL;