/+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 src/game_utils.c

  • Committer: Gustav Hartvigsson
  • Date: 2014-01-11 23:53:51 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140111235351-esn2xhqjg2c6ir9g
* moved the files to ./src/
* fixed a few problems useing some haxx.
* Changed Makefile to take into account the file move and made it better.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
  );
46
46
  
47
47
  va_list args;
48
 
  va_start (args, format);
 
48
  va_start (args, str);
49
49
  vfprintf (stderr, str, args);
50
50
  va_end (args);
51
51