1
0
Fork 0

change const char * to char *

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1870
This commit is contained in:
Sjoerd van der Berg 2004-07-05 11:54:53 +00:00
parent 621f0961d4
commit 39de9f88c6
2 changed files with 4 additions and 4 deletions

View file

@ -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 <string.h>
#include <ctype.h>
@ -27,7 +27,7 @@
#include "callback.h"
#include "debug.h"
const char * RunningProgram="DOSBOX";
char * RunningProgram="DOSBOX";
#ifdef _MSC_VER
#pragma pack(1)

View file

@ -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;