From b79b3b4d2a5a8b6c185f554dfdaaf334693f9a7d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 14 Oct 2003 01:33:13 +0000 Subject: [PATCH] fix slash use static --- stepmania/src/Bookkeeper.cpp | 4 ++-- stepmania/src/ProductInfo.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/stepmania/src/Bookkeeper.cpp b/stepmania/src/Bookkeeper.cpp index 45a2aae6b3..76e62d8e20 100644 --- a/stepmania/src/Bookkeeper.cpp +++ b/stepmania/src/Bookkeeper.cpp @@ -24,8 +24,8 @@ Bookkeeper* BOOKKEEPER = NULL; // global and accessable from anywhere in our program -const CString BOOKKEEPING_INI = BASE_PATH "Data\\Bookkeeping.ini"; -const CString COINS_DAT = BASE_PATH "Data\\Coins.dat"; +static const CString BOOKKEEPING_INI = BASE_PATH "Data" SLASH "Bookkeeping.ini"; +static const CString COINS_DAT = BASE_PATH "Data" SLASH "Coins.dat"; diff --git a/stepmania/src/ProductInfo.h b/stepmania/src/ProductInfo.h index 4c7332f368..0c898fc55c 100644 --- a/stepmania/src/ProductInfo.h +++ b/stepmania/src/ProductInfo.h @@ -2,6 +2,6 @@ // Don't forget to also change ProductInfo.nsinc! #define PRODUCT_NAME "StepMania" -#define PRODUCT_VER "3.9 random build" -//#define PRODUCT_VER "3.9 alpha 7" +//#define PRODUCT_VER "3.9 random build" +#define PRODUCT_VER "3.9 alpha 7" #define PRODUCT_NAME_VER PRODUCT_NAME " " PRODUCT_VER