From 39de9f88c6424ed8519a20e62d513152159d6b0a Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Mon, 5 Jul 2004 11:54:53 +0000 Subject: [PATCH] change const char * to char * Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1870 --- src/dos/dos_execute.cpp | 4 ++-- src/gui/sdlmain.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dos/dos_execute.cpp b/src/dos/dos_execute.cpp index 54885eb6..b0d0c54a 100644 --- a/src/dos/dos_execute.cpp +++ b/src/dos/dos_execute.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: dos_execute.cpp,v 1.40 2004-06-17 17:40:02 harekiet Exp $ */ +/* $Id: dos_execute.cpp,v 1.41 2004-07-05 11:54:44 harekiet Exp $ */ #include #include @@ -27,7 +27,7 @@ #include "callback.h" #include "debug.h" -const char * RunningProgram="DOSBOX"; +char * RunningProgram="DOSBOX"; #ifdef _MSC_VER #pragma pack(1) diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index 9ed5448c..9171947d 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: sdlmain.cpp,v 1.67 2004-06-13 12:10:08 qbix79 Exp $ */ +/* $Id: sdlmain.cpp,v 1.68 2004-07-05 11:54:53 harekiet Exp $ */ #ifndef _GNU_SOURCE #define _GNU_SOURCE @@ -165,7 +165,7 @@ struct SDL_Block { static SDL_Block sdl; static void CaptureMouse(void); -extern const char * RunningProgram; +extern char * RunningProgram; void GFX_SetTitle(Bits cycles,Bits frameskip){ char title[200]={0}; static Bits internal_cycles=0;