Skip to content

Commit

Permalink
ci: remove 3ds and sdl1 from blocking build passing
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmoose committed Mar 22, 2024
1 parent 4bdfb58 commit 900291d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
ext: wuhb
- platform: switch
ext: nro
- platform: 3ds
ext: 3dsx
# - platform: 3ds
# ext: 3dsx
- platform: wii
ext: dol
- platform: pc-sdl1
ext: bin-sdl1
# - platform: pc-sdl1
# ext: bin-sdl1
container:
image: ghcr.io/fortheusers/sealeo:latest
steps:
Expand Down
1 change: 1 addition & 0 deletions src/DrawUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#ifdef SDL1
static uint32_t CUR_DRAW_COLOR = 0xFFFFFFFF;
static uint32_t LAST_SDL1_FLIP = 0;
#define TTF_RenderUTF8_Blended_Wrapped TTF_RenderText_Blended_Wrapped
#endif

char* musicData = NULL;
Expand Down
4 changes: 2 additions & 2 deletions src/RootDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ RootDisplay::RootDisplay()
#elif defined(_3DS) || defined(_3DS_MOCK)
setScreenResolution(400, 480); // 3ds has a special resolution!
#else
setScreenResolution(640, 480);
// setScreenResolution(1280, 720);
// setScreenResolution(640, 480);
setScreenResolution(1280, 720);
#endif
// the main input handler
this->events = new InputEvents();
Expand Down

0 comments on commit 900291d

Please sign in to comment.