diff --git a/src/osdep/amiberry_gfx.cpp b/src/osdep/amiberry_gfx.cpp index 4e21a60e..054bdef6 100644 --- a/src/osdep/amiberry_gfx.cpp +++ b/src/osdep/amiberry_gfx.cpp @@ -303,12 +303,12 @@ int graphics_setup(void) if (sdlWindow == nullptr) { - sdlWindow = SDL_CreateWindow("Amiberry-GUI", + sdlWindow = SDL_CreateWindow("Amiberry", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, - 0, - 0, - SDL_WINDOW_FULLSCREEN_DESKTOP); + 800, + 480, + SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE); check_error_sdl(sdlWindow == nullptr, "Unable to create window"); } diff --git a/src/osdep/gui/main_window.cpp b/src/osdep/gui/main_window.cpp index 1cf78151..c6aef167 100644 --- a/src/osdep/gui/main_window.cpp +++ b/src/osdep/gui/main_window.cpp @@ -239,14 +239,14 @@ namespace sdl void setup_cursor() { // Detect resolution and load appropiate cursor image - if (sdlMode.w > 1280) - { - cursor_surface = SDL_LoadBMP("data/cursor-x2.bmp"); - } - else - { + //if (sdlMode.w > 1280) + //{ + // cursor_surface = SDL_LoadBMP("data/cursor-x2.bmp"); + //} + //else + //{ cursor_surface = SDL_LoadBMP("data/cursor.bmp"); - } + //} if (!cursor_surface) {