diff --git a/.gitignore b/.gitignore index dc40f3d6..af21c6ca 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ Amiberry/VisualGDB/Release/Amiberry *.sqlite Amiberry/VisualGDB/Release-rpi2/Amiberry *.ipch +*.db-shm +*.db-wal diff --git a/src/drawing.cpp b/src/drawing.cpp index cb64a51a..1c4b69b5 100644 --- a/src/drawing.cpp +++ b/src/drawing.cpp @@ -70,8 +70,6 @@ bool aga_mode; /* mirror of chipset_mask & CSMASK_AGA */ coordinates have a lower resolution (i.e. we're shrinking the image). */ static int res_shift; -extern SDL_Surface *prSDLScreen; - /* Lookup tables for dual playfields. The dblpf_*1 versions are for the case that playfield 1 has the priority, dbplpf_*2 are used if playfield 2 has priority. If we need an array for non-dual playfield mode, it has no number. */ diff --git a/src/osdep/pandora.cpp b/src/osdep/pandora.cpp index 28f0f963..2edfa0cd 100644 --- a/src/osdep/pandora.cpp +++ b/src/osdep/pandora.cpp @@ -849,9 +849,6 @@ int main(int argc, char *argv[]) rp9_cleanup(); logging_cleanup(); - -// printf("Threads at exit:\n"); -// dbg_list_threads(); return 0; } diff --git a/src/osdep/rasp_gfx.cpp b/src/osdep/rasp_gfx.cpp index 4b5cf8a3..f7c5b226 100644 --- a/src/osdep/rasp_gfx.cpp +++ b/src/osdep/rasp_gfx.cpp @@ -175,10 +175,6 @@ static void open_screen(struct uae_prefs *p) if (Dummy_prSDLScreen == NULL) { - const SDL_VideoInfo* videoInfo = SDL_GetVideoInfo(); -#ifdef DEBUG - printf("DispmanX: Current resolution: %d x %d %d bpp\n", videoInfo->current_w, videoInfo->current_h, videoInfo->vfmt->BitsPerPixel); -#endif // DEBUG // Dummy_prSDLScreen = SDL_SetVideoMode(videoInfo->current_w, videoInfo->current_h, videoInfo->vfmt->BitsPerPixel, SDL_SWSURFACE | SDL_FULLSCREEN); Dummy_prSDLScreen = SDL_SetVideoMode(width, height, 16, SDL_SWSURFACE | SDL_FULLSCREEN); }