From 7e854f6544995887fc7140b865e26af32af58f15 Mon Sep 17 00:00:00 2001 From: Jan Holthuis Date: Sat, 22 Aug 2015 17:24:29 +0200 Subject: [PATCH] nulldc: Remove some hardcoded values --- core/nullDC.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/nullDC.cpp b/core/nullDC.cpp index 7368ab093..856898bc3 100755 --- a/core/nullDC.cpp +++ b/core/nullDC.cpp @@ -44,9 +44,6 @@ int GetFile(char *szFileName, char *szParse=0,u32 flags=0) cfgLoadStr("config","image",szFileName,"null"); if (strcmp(szFileName,"null")==0) { -#if defined(OMAP4) - strcpy(szFileName,GetPath("/gdimage/crazy_taxi.chd").c_str()); -#else #if HOST_OS==OS_WINDOWS OPENFILENAME ofn; ZeroMemory( &ofn , sizeof( ofn)); @@ -67,18 +64,9 @@ int GetFile(char *szFileName, char *szParse=0,u32 flags=0) //already there //strcpy(szFileName,ofn.lpstrFile); } - #else - strcpy(szFileName,GetPath("/game.chd").c_str()); #endif -#endif } - if (strcmp(szFileName,"hardpath")==0) - { - strcpy(szFileName,"D:\\DC\\shenmue.chd"); - } - - return 1; }