Skip to content

Commit

Permalink
WIP PS3 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
UnknownShadow200 committed Sep 9, 2023
1 parent e6d1f59 commit 7ece36c
Show file tree
Hide file tree
Showing 8 changed files with 1,250 additions and 15 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ psp:
$(MAKE) -f src/Makefile_PSP PLAT=psp
vita:
$(MAKE) -f src/Makefile_vita PLAT=vita
ps3:
$(MAKE) -f src/Makefile_PS3 PLAT=ps3
3ds:
$(MAKE) -f src/Makefile_3DS PLAT=3ds
wii:
Expand Down
6 changes: 6 additions & 0 deletions src/Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,12 @@ typedef cc_uint8 cc_bool;
#define CC_BUILD_DREAMCAST
#define CC_BUILD_LOWMEM
#undef CC_BUILD_FREETYPE
#elif defined PLAT_PS3
#define CC_BUILD_HTTPCLIENT
#define CC_BUILD_OPENAL
#define CC_BUILD_PS3
#define CC_BUILD_LOWMEM
#undef CC_BUILD_FREETYPE
#endif
#endif

Expand Down
2 changes: 0 additions & 2 deletions src/Graphics_Dreamcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,6 @@ void Gfx_EndFrame(void) {
}

void Gfx_OnWindowResize(void) {
/* TODO: Eliminate this nasty hack.. */
Game_UpdateDimensions();
glViewport(0, 0, Game.Width, Game.Height);
}

Expand Down
Loading

0 comments on commit 7ece36c

Please sign in to comment.