change VER to display the sub-version in an easier readable form (6.2->6.02, 6.20->6.20) to avoid confusion
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@3196
This commit is contained in:
parent
6a721243e7
commit
cd0394d692
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (C) 2002-2007 The DOSBox Team
|
||||
* Copyright (C) 2002-2008 The DOSBox Team
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -16,7 +16,7 @@
|
|||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
/* $Id: shell.cpp,v 1.90 2008-07-27 20:12:28 qbix79 Exp $ */
|
||||
/* $Id: shell.cpp,v 1.91 2008-08-10 18:33:30 c2woody Exp $ */
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
@ -560,7 +560,7 @@ void SHELL_Init() {
|
|||
MSG_Add("SHELL_CMD_ATTRIB_HELP","Does nothing. Provided for compatibility.\n");
|
||||
MSG_Add("SHELL_CMD_PATH_HELP","Provided for compatibility.\n");
|
||||
MSG_Add("SHELL_CMD_VER_HELP","View and set the reported DOS version.\n");
|
||||
MSG_Add("SHELL_CMD_VER_VER","DOSBox version %s. Reported DOS version %d.%d.\n");
|
||||
MSG_Add("SHELL_CMD_VER_VER","DOSBox version %s. Reported DOS version %d.%02d.\n");
|
||||
|
||||
/* Regular startup */
|
||||
call_shellstop=CALLBACK_Allocate();
|
||||
|
|
Loading…
Add table
Reference in a new issue