mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-26 01:30:51 +00:00
video_thread_wrapper.c - use PATH_MAX sizes for chars
This commit is contained in:
parent
9393cc5ca5
commit
9fc34b6d2d
@ -134,7 +134,7 @@ typedef struct thread_video
|
|||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
char msg[1024];
|
char msg[PATH_MAX];
|
||||||
struct font_params params;
|
struct font_params params;
|
||||||
} osd_message;
|
} osd_message;
|
||||||
|
|
||||||
@ -152,7 +152,7 @@ typedef struct thread_video
|
|||||||
unsigned pitch;
|
unsigned pitch;
|
||||||
bool updated;
|
bool updated;
|
||||||
bool within_thread;
|
bool within_thread;
|
||||||
char msg[1024];
|
char msg[PATH_MAX];
|
||||||
} frame;
|
} frame;
|
||||||
|
|
||||||
video_driver_t video_thread;
|
video_driver_t video_thread;
|
||||||
|
Loading…
Reference in New Issue
Block a user