Skip to content

Commit

Permalink
Use NTSC filter by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahefner committed Feb 7, 2012
1 parent c183385 commit 8e7d3d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions global.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ SDL_Surface *window_surface=NULL;
/* Frame buffer, for screenshots. First dimension separates color versus emphasis. */
byte frame_buffer[2][SCREEN_HEIGHT][SCREEN_WIDTH];

void (*vid_filter) (void) = rescale_2x;
void (*vid_filter) (void) = ntsc_filter;
void (*filter_output_line) (unsigned y, byte *colors, byte *emphasis) = NULL;
void (*filter_output_finish) (void) = filter_finish_nop;

Expand All @@ -72,7 +72,7 @@ long long time_frame_target;
unsigned frame_start_samples = 0;

/* timing config - move inside nes_machine if PAL support is added */
int cfg_framelines = 240;
int cfg_framelines = 240;

/* Kludge pixel offset applied to $2001 writes, to calibrate the Final Fantasy light beam effect. */
int video_alignment_cycles_kludge = 12;
Expand Down

0 comments on commit 8e7d3d8

Please sign in to comment.