From 8bef23d24fc45a08c2889afc9b8895f46b0ba205 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Wed, 1 May 2019 20:30:59 -0400 Subject: [PATCH] fix format-overflow --- src/game.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.h b/src/game.h index 5c47b46..a732b2b 100644 --- a/src/game.h +++ b/src/game.h @@ -27,7 +27,7 @@ using namespace std; typedef struct { - char Filename[12]; //[*]vol.* + char Filename[15]; //[*]vol.* long Loc; //location in vol file bool Exists; }TResourceInfo ;