Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed Mac OS X assertion code.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jan 13, 2010
1 parent 5745976 commit f9651f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/video/cocoa/SDL_cocoavideo.m
Expand Up @@ -22,6 +22,7 @@
#include "SDL_config.h"

#include "SDL_cocoavideo.h"
#include "SDL_assert.h"

/* Initialization/Query functions */
static int Cocoa_VideoInit(_THIS);
Expand Down Expand Up @@ -154,7 +155,7 @@
data->trigger_count, (data->trigger_count == 1) ? "" : "s",
data->condition];

NSLog(msg);
NSLog(@"%s", msg);

/*
* !!! FIXME: this code needs to deal with fullscreen modes:
Expand Down

0 comments on commit f9651f9

Please sign in to comment.