Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/PSP.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ extern "C" {
#define LINESIZE 512
#define PIXELSIZE 1
#define FRAMESIZE 0x44000
#define SCREEN_WIDTH 480
#define SCREEN_HEIGHT 272

#include <psp2/types.h>
#include <psp2/ctrl.h>
Expand Down
2 changes: 1 addition & 1 deletion src/PSP2.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void PSP2_Video_DrawBuffer()
vita2d_start_drawing();
vita2d_clear_screen();

vita2d_draw_texture_scale(pal_tex, 150, 75, 2, 2);
vita2d_draw_texture_scale(pal_tex, 0, 0, SCREEN_W/(float)SCREENWIDTH, SCREEN_H/(float)SCREENHEIGHT);
vita2d_draw_texture(font_tex, 0, 0);

vita2d_end_drawing();
Expand Down