Update dummy_video to have the correct surface signature.
I forgot to update dummy_video.cpp in commit
0c27eb9490
, which causes travis compiles
to fail.
This commit is contained in:
parent
449aed0a64
commit
e686200a2d
2 changed files with 2 additions and 2 deletions
|
@ -715,7 +715,7 @@ void save_preview_pane::draw_contents()
|
|||
return;
|
||||
}
|
||||
|
||||
surface &screen = video().getSurface();
|
||||
surface& screen = video().getSurface();
|
||||
|
||||
SDL_Rect const &loc = location();
|
||||
const SDL_Rect area = sdl::create_rect(loc.x + save_preview_border
|
||||
|
|
|
@ -33,7 +33,7 @@ surface display_format_alpha(surface)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
surface get_video_surface()
|
||||
surface& get_video_surface()
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue